Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testOrderedKeySet (0.06 seconds)

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

        assertThat(multimap.get("google")).containsExactly(6, 2).inOrder();
        assertThat(multimap.get("tree")).containsExactly(null, 0).inOrder();
      }
    
      public void testOrderedKeySet() {
        TreeMultimap<@Nullable String, @Nullable Integer> multimap = createPopulate();
        assertThat(multimap.keySet()).containsExactly(null, "tree", "google").inOrder();
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 8.4K bytes
    - Click Count (0)
Back to Top