Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ofEntries (0.2 sec)

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

        }
      }
    
      public void testOfEntries() {
        assertMapEquals(ImmutableBiMap.ofEntries(entry("one", 1), entry("two", 2)), "one", 1, "two", 2);
      }
    
      public void testOfEntriesNull() {
        Entry<@Nullable Integer, Integer> nullKey = entry(null, 23);
        try {
          ImmutableBiMap.ofEntries((Entry<Integer, Integer>) nullKey);
          fail();
        } catch (NullPointerException expected) {
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 10:16:44 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java

        }
      }
    
      public void testOfEntries() {
        assertMapEquals(ImmutableBiMap.ofEntries(entry("one", 1), entry("two", 2)), "one", 1, "two", 2);
      }
    
      public void testOfEntriesNull() {
        Entry<@Nullable Integer, Integer> nullKey = entry(null, 23);
        try {
          ImmutableBiMap.ofEntries((Entry<Integer, Integer>) nullKey);
          fail();
        } catch (NullPointerException expected) {
        }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 10:16:44 GMT 2024
    - 22.4K bytes
    - Viewed (0)
Back to top