Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testForcePut (0.05 seconds)

  1. android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java

        assertThrows(IllegalArgumentException.class, () -> zis.combine(zat).build());
      }
    
      // BiMap-specific tests
    
      @SuppressWarnings("DoNotCall")
      public void testForcePut() {
        BiMap<String, Integer> bimap = ImmutableBiMap.copyOf(ImmutableMap.of("one", 1, "two", 2));
        assertThrows(UnsupportedOperationException.class, () -> bimap.forcePut("three", 3));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 21.4K bytes
    - Click Count (0)
Back to Top