Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testCreateCopy (0.05 seconds)

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

        assertThrows(IllegalArgumentException.class, () -> HashBasedTable.create(100, -5));
    
        assertThrows(IllegalArgumentException.class, () -> HashBasedTable.create(-5, 20));
      }
    
      public void testCreateCopy() {
        Table<String, Integer, Character> original =
            create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        Table<String, Integer, Character> copy = HashBasedTable.create(original);
        assertEquals(original, copy);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 3.6K bytes
    - Click Count (0)
Back to Top