Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testImmutableEntryNull (0.08 seconds)

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

        assertThrows(UnsupportedOperationException.class, () -> e.setValue(2));
        assertEquals("foo=1", e.toString());
        assertEquals(101575, e.hashCode());
      }
    
      public void testImmutableEntryNull() {
        Entry<@Nullable String, @Nullable Integer> e = immutableEntry((String) null, (Integer) null);
        assertThat(e.getKey()).isNull();
        assertThat(e.getValue()).isNull();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 22:56:33 GMT 2025
    - 62.7K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/MapsTest.java

        assertThrows(UnsupportedOperationException.class, () -> e.setValue(2));
        assertEquals("foo=1", e.toString());
        assertEquals(101575, e.hashCode());
      }
    
      public void testImmutableEntryNull() {
        Entry<@Nullable String, @Nullable Integer> e = immutableEntry((String) null, (Integer) null);
        assertThat(e.getKey()).isNull();
        assertThat(e.getValue()).isNull();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 22:56:33 GMT 2025
    - 65K bytes
    - Click Count (0)
Back to Top