Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testColumnNull (1.41 sec)

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

        assertEquals(ImmutableMap.of("foo", 'a', "bar", 'b'), table.column(1));
      }
    
      // This test assumes that the implementation does not support null keys.
      public void testColumnNull() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertThrows(NullPointerException.class, () -> table.column(null));
      }
    
      public void testColumnSetPartialOverlap() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top