Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 43 of 43 for DoNotCall (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java

                .put("four", 4)
                .put("five", 5)
                .build();
        assertMapEquals(map, "five", 5, "four", 4, "one", 1, "three", 3, "two", 2);
      }
    
      @SuppressWarnings("DoNotCall")
      public void testBuilder_orderEntriesByValueFails() {
        ImmutableSortedMap.Builder<String, Integer> builder = ImmutableSortedMap.naturalOrder();
        assertThrows(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 29.8K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        ImmutableSortedSet<LegacyComparable> set = builder.build();
        assertTrue(elementsEqual(LegacyComparable.VALUES_BACKWARD, set));
      }
    
      @SuppressWarnings({"deprecation", "static-access", "DoNotCall"})
      public void testBuilderMethod() {
        assertThrows(UnsupportedOperationException.class, () -> ImmutableSortedSet.builder());
      }
    
      public void testAsList() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 47.2K bytes
    - Click Count (0)
Back to Top