Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testOrderedKeySet (0.08 sec)

  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();
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top