Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testToString_ordered (0.06 sec)

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

      public void testSerialization() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        SerializableTester.reserializeAndAssert(table);
      }
    
      public void testToString_ordered() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertEquals("{bar={1=b}, foo={1=a, 3=c}}", table.toString());
        assertEquals("{bar={1=b}, foo={1=a, 3=c}}", table.rowMap().toString());
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top