Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCopyOfNullKey (0.05 sec)

  1. guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java

      }
    
      public void testCopyOfImmutableListMultimap() {
        Multimap<String, Integer> multimap = createMultimap();
        assertSame(multimap, ImmutableListMultimap.copyOf(multimap));
      }
    
      public void testCopyOfNullKey() {
        ArrayListMultimap<@Nullable String, Integer> input = ArrayListMultimap.create();
        input.put(null, 1);
        assertThrows(
            NullPointerException.class,
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top