Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MapIsEmptyTester (0.21 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/MapIsEmptyTester.java

     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class MapIsEmptyTester<K, V> extends AbstractMapTester<K, V> {
      @CollectionSize.Require(ZERO)
      public void testIsEmpty_yes() {
        assertTrue("isEmpty() should return true", getMap().isEmpty());
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 09 20:10:38 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/MapIsEmptyTester.java

     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class MapIsEmptyTester<K, V> extends AbstractMapTester<K, V> {
      @CollectionSize.Require(ZERO)
      public void testIsEmpty_yes() {
        assertTrue("isEmpty() should return true", getMap().isEmpty());
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 09 20:10:38 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapGetTester;
    import com.google.common.collect.testing.testers.MapHashCodeTester;
    import com.google.common.collect.testing.testers.MapIsEmptyTester;
    import com.google.common.collect.testing.testers.MapPutAllTester;
    import com.google.common.collect.testing.testers.MapPutTester;
    import com.google.common.collect.testing.testers.MapRemoveTester;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 11K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapGetTester;
    import com.google.common.collect.testing.testers.MapHashCodeTester;
    import com.google.common.collect.testing.testers.MapIsEmptyTester;
    import com.google.common.collect.testing.testers.MapMergeTester;
    import com.google.common.collect.testing.testers.MapPutAllTester;
    import com.google.common.collect.testing.testers.MapPutIfAbsentTester;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 12.1K bytes
    - Viewed (0)
Back to top