Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testAsMapReadsThrough (0.43 seconds)

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

        assertThat(map.get("five")).isNull();
        assertThat(map.entrySet())
            .containsExactly(mapEntry("one", 3), mapEntry("two", 3), mapEntry("three", 5))
            .inOrder();
      }
    
      public void testAsMapReadsThrough() {
        Set<String> strings = new LinkedHashSet<>();
        Collections.addAll(strings, "one", "two", "three");
        Map<String, Integer> map = Maps.asMap(strings, LENGTH_FUNCTION);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 63.2K bytes
    - Click Count (0)
Back to Top