Package com.google.common.collect.testing

Examples of com.google.common.collect.testing.TestStringSetGenerator


{
  public static TestSuite
  suite()
  {
    return SetTestSuiteBuilder
      .using(new TestStringSetGenerator() {
          @Override public Set<String> create(String[] elements) {
            return new PSet<String>(MinimalCollection.of(elements));
          }
        })
      .named("PSet")
View Full Code Here

TOP

Related Classes of com.google.common.collect.testing.TestStringSetGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.