Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addTestSuite (0.21 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

          return standardLastEntry();
        }
      }
    
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        suite.addTestSuite(ForwardingNavigableMapTest.class);
        suite.addTest(
            NavigableMapTestSuiteBuilder.using(
                    new TestStringSortedMapGenerator() {
                      @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Dec 16 03:23:31 GMT 2025
    - 9.7K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java

                    CollectionFeature.SERIALIZABLE,
                    CollectionFeature.ALLOWS_NULL_QUERIES)
                .named("ConcurrentSkipListMultiset")
                .createTestSuite());
        suite.addTestSuite(ConcurrentHashMultisetTest.class);
        return suite;
      }
    
      @AndroidIncompatible // test-suite builders
      private static TestStringMultisetGenerator concurrentHashMultisetGenerator() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Dec 08 22:42:14 GMT 2025
    - 16.3K bytes
    - Click Count (0)
Back to Top