Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

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

        assertMapsEqual(new HashMap<>(), map);
      }
    
      public void testTransformSingletonMapEquality() {
        Map<String, String> map =
            transformValues(ImmutableMap.of("a", 1), Functions.toStringFunction());
        Map<String, String> expected = ImmutableMap.of("a", "1");
        assertMapsEqual(expected, map);
        assertThat(map.get("a")).isEqualTo(expected.get("a"));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 9.5K bytes
    - Click Count (0)
Back to Top