Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testClearPropagatesToGet (0.12 seconds)

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

      public void testClearThroughValues() {
        multimap().values().clear();
        assertCleared();
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testClearPropagatesToGet() {
        for (K key : sampleKeys()) {
          resetContainer();
          Collection<V> collection = multimap().get(key);
          multimap().clear();
          assertEmpty(collection);
        }
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Feb 12 21:10:54 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapClearTester.java

      public void testClearThroughValues() {
        multimap().values().clear();
        assertCleared();
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testClearPropagatesToGet() {
        for (K key : sampleKeys()) {
          resetContainer();
          Collection<V> collection = multimap().get(key);
          multimap().clear();
          assertEmpty(collection);
        }
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Feb 12 21:10:54 GMT 2025
    - 4.3K bytes
    - Click Count (0)
Back to Top