Package com.google.common.collect.testing.google.SetGenerators

Examples of com.google.common.collect.testing.google.SetGenerators.ContiguousSetGenerator


  public static class BuiltTests extends TestCase {
    public static Test suite() {
      TestSuite suite = new TestSuite();

      suite.addTest(NavigableSetTestSuiteBuilder.using(
          new ContiguousSetGenerator())
          .named("Range.asSet")
          .withFeatures(CollectionSize.ANY, KNOWN_ORDER, ALLOWS_NULL_QUERIES,
              NON_STANDARD_TOSTRING, RESTRICTS_ELEMENTS)
          .suppressing(getHoleMethods())
          .createTestSuite());
View Full Code Here


  public static class BuiltTests extends TestCase {
    public static Test suite() {
      TestSuite suite = new TestSuite();

      suite.addTest(NavigableSetTestSuiteBuilder.using(
          new ContiguousSetGenerator())
          .named("Range.asSet")
          .withFeatures(CollectionSize.ANY, KNOWN_ORDER, ALLOWS_NULL_QUERIES,
              NON_STANDARD_TOSTRING, RESTRICTS_ELEMENTS)
          .suppressing(getHoleMethods())
          .createTestSuite());
View Full Code Here

TOP

Related Classes of com.google.common.collect.testing.google.SetGenerators.ContiguousSetGenerator

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.