Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testOfWithDuplicateKey (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top