Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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.getMessage()).contains("one");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 41.1K 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 36.6K bytes
    - Viewed (0)
Back to top