Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testEntrySetRemoveMissingKey (0.17 seconds)

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

        } else {
          assertThrows(
              UnsupportedOperationException.class, () -> entrySet.remove(entrySet.iterator().next()));
        }
        assertInvariants(map);
      }
    
      public void testEntrySetRemoveMissingKey() {
        Map<K, V> map;
        K key;
        try {
          map = makeEitherMap();
          key = getKeyNotInPopulatedMap();
        } catch (UnsupportedOperationException e) {
          return;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  2. guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

        } else {
          assertThrows(
              UnsupportedOperationException.class, () -> entrySet.remove(entrySet.iterator().next()));
        }
        assertInvariants(map);
      }
    
      public void testEntrySetRemoveMissingKey() {
        Map<K, V> map;
        K key;
        try {
          map = makeEitherMap();
          key = getKeyNotInPopulatedMap();
        } catch (UnsupportedOperationException e) {
          return;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 43.9K bytes
    - Click Count (0)
Back to Top