Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for initMultimapWithNullValue (0.09 sec)

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

      }
    
      @CollectionSize.Require(absent = ZERO)
      @MapFeature.Require(ALLOWS_NULL_VALUES)
      public void testContainsEntryWithNullValuePresent() {
        initMultimapWithNullValue();
        assertContains(multimap().entries(), mapEntry(getKeyForNullValue(), (V) null));
      }
    
      @MapFeature.Require(ALLOWS_NULL_VALUE_QUERIES)
      public void testContainsEntryWithNullValueAbsent() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 21:10:54 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/MultimapEntriesTester.java

      }
    
      @CollectionSize.Require(absent = ZERO)
      @MapFeature.Require(ALLOWS_NULL_VALUES)
      public void testContainsEntryWithNullValuePresent() {
        initMultimapWithNullValue();
        assertContains(multimap().entries(), mapEntry(getKeyForNullValue(), (V) null));
      }
    
      @MapFeature.Require(ALLOWS_NULL_VALUE_QUERIES)
      public void testContainsEntryWithNullValueAbsent() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 21:10:54 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapRemoveEntryTester.java

        assertGet(getKeyForNullValue(), ImmutableList.of());
      }
    
      @CollectionSize.Require(absent = ZERO)
      @MapFeature.Require({SUPPORTS_REMOVE, ALLOWS_NULL_VALUES})
      public void testRemoveNullValuePresent() {
        initMultimapWithNullValue();
    
        assertTrue(multimap().remove(getKeyForNullValue(), null));
    
        expectMissing(mapEntry(getKeyForNullValue(), (V) null));
        assertGet(getKeyForNullValue(), ImmutableList.of());
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 20:54:16 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/google/MultimapRemoveEntryTester.java

        assertGet(getKeyForNullValue(), ImmutableList.of());
      }
    
      @CollectionSize.Require(absent = ZERO)
      @MapFeature.Require({SUPPORTS_REMOVE, ALLOWS_NULL_VALUES})
      public void testRemoveNullValuePresent() {
        initMultimapWithNullValue();
    
        assertTrue(multimap().remove(getKeyForNullValue(), null));
    
        expectMissing(mapEntry(getKeyForNullValue(), (V) null));
        assertGet(getKeyForNullValue(), ImmutableList.of());
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 20:54:16 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top