- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for testOfWithDuplicateKey (0.22 sec)
-
android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java
assertThrows(NullPointerException.class, () -> ImmutableBiMap.of("one", 1, "two", null)); } @SuppressWarnings({"AlwaysThrows", "DistinctVarargsChecker"}) public void testOfWithDuplicateKey() { IllegalArgumentException expected = assertThrows(IllegalArgumentException.class, () -> ImmutableBiMap.of("one", 1, "one", 1)); assertThat(expected).hasMessageThat().contains("one"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
assertThrows(NullPointerException.class, () -> ImmutableSortedMap.of("one", 1, "two", null)); } @SuppressWarnings("DistinctVarargsChecker") public void testOfWithDuplicateKey() { assertThrows(IllegalArgumentException.class, () -> ImmutableSortedMap.of("one", 1, "one", 1)); } public void testCopyOfEmptyMap() { ImmutableSortedMap<String, Integer> copy =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java
assertThrows(NullPointerException.class, () -> ImmutableMap.of("one", null)); assertThrows(NullPointerException.class, () -> ImmutableMap.of("one", 1, "two", null)); } public void testOfWithDuplicateKey() { assertThrows(IllegalArgumentException.class, () -> ImmutableMap.of("one", 1, "one", 1)); } public void testCopyOfEmptyMap() { ImmutableMap<String, Integer> copy =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.7K bytes - Viewed (0)