Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testClearPropagatesToAsMap (0.33 sec)

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

          if (collection != null) {
            multimap().clear();
            assertEmpty(collection);
          }
        }
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      public void testClearPropagatesToAsMap() {
        Map<K, Collection<V>> asMap = multimap().asMap();
        multimap().clear();
        assertEmpty(asMap);
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      public void testClearPropagatesToEntries() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 4K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapClearTester.java

          if (collection != null) {
            multimap().clear();
            assertEmpty(collection);
          }
        }
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      public void testClearPropagatesToAsMap() {
        Map<K, Collection<V>> asMap = multimap().asMap();
        multimap().clear();
        assertEmpty(asMap);
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      public void testClearPropagatesToEntries() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 4K bytes
    - Viewed (0)
Back to top