Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPutAllRejectsNullValue (0.08 sec)

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

        assertTrue(multimap().putAll(source));
        assertTrue(multimap().containsEntry(null, v0()));
      }
    
      @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES)
      public void testPutAllRejectsNullValue() {
        Multimap<K, V> source = getSubjectGenerator().create(mapEntry(k0(), null));
        assertThrows(NullPointerException.class, () -> multimap().putAll(source));
        expectUnchanged();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 21:10:54 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top