Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPutNullKey (0.09 sec)

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

        } else {
          assertThrows(UnsupportedOperationException.class, () -> map.put(keyToPut, valueToPut));
        }
        assertInvariants(map);
      }
    
      public void testPutNullKey() {
        if (!supportsPut) {
          return;
        }
        Map<K, V> map = makeEitherMap();
        V valueToPut;
        try {
          valueToPut = getValueNotInPopulatedMap();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 43.9K bytes
    - Viewed (0)
Back to top