Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testForcePut (0.04 sec)

  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));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.2K bytes
    - Viewed (0)
Back to top