Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testRowClearAndPut (0.19 sec)

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

        assertSize(3);
      }
    
      @Override
      public void testPutNull() {}
    
      @Override
      public void testPutNullReplace() {}
    
      @Override
      public void testRowClearAndPut() {}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/AbstractTableTest.java

          assertSize(2);
        } else {
          assertThrows(UnsupportedOperationException.class, () -> table.remove("foo", 3));
          assertEquals((Character) 'c', table.get("foo", 3));
        }
      }
    
      public void testRowClearAndPut() {
        if (supportsRemove()) {
          table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
          Map<Integer, C> row = table.row("foo");
          assertEquals(ImmutableMap.of(1, 'a', 3, 'c'), row);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/AbstractTableTest.java

          assertSize(2);
        } else {
          assertThrows(UnsupportedOperationException.class, () -> table.remove("foo", 3));
          assertEquals((Character) 'c', table.get("foo", 3));
        }
      }
    
      public void testRowClearAndPut() {
        if (supportsRemove()) {
          table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
          Map<Integer, C> row = table.row("foo");
          assertEquals(ImmutableMap.of(1, 'a', 3, 'c'), row);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top