Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testToImmutableSortedSet_customComparator (0.34 seconds)

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

        ImmutableSortedSet<String> sortedSet = zis.combine(zat).build();
        assertThat(sortedSet).containsExactly("a", "b", "c", "d").inOrder();
      }
    
      // TODO(b/172823566): Use mainline testToImmutableSortedSet_customComparator once CollectorTester
      //  is usable to java7.
      public void testToImmutableSortedSet_customComparator_java7() {
        // Note that a Collector should generally enforce consistent comparator between builders.
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 45.8K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        CollectorTester.of(collector, equivalence)
            .expectCollects(
                ImmutableSortedSet.of("a", "b", "c", "d"), "a", "b", "a", "c", "b", "b", "d");
      }
    
      public void testToImmutableSortedSet_customComparator() {
        Collector<String, ?, ImmutableSortedSet<String>> collector =
            toImmutableSortedSet(String.CASE_INSENSITIVE_ORDER);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 46.7K bytes
    - Click Count (0)
Back to Top