Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testOrderedValues (0.11 sec)

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

                immutableEntry("tree", 0),
                immutableEntry("google", 6),
                immutableEntry("google", 2))
            .inOrder();
      }
    
      public void testOrderedValues() {
        TreeMultimap<@Nullable String, @Nullable Integer> multimap = createPopulate();
        assertThat(multimap.values()).containsExactly(7, 3, 1, null, 0, 6, 2).inOrder();
      }
    
      public void testComparator() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

                immutableEntry("google", 2),
                immutableEntry("google", 6),
                immutableEntry("tree", 0),
                immutableEntry("tree", 4))
            .inOrder();
      }
    
      public void testOrderedValues() {
        TreeMultimap<String, Integer> multimap = createPopulate();
        assertThat(multimap.values()).containsExactly(1, 3, 7, 2, 6, 0, 4).inOrder();
      }
    
      public void testMultimapConstructor() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top