- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testToImmutableSortedSet_customComparator (0.11 sec)
-
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.
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 45.8K bytes - Viewed (0) -
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);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 46.7K bytes - Viewed (0)