Home
last modified time | relevance | path

Searched refs:runSortedTests (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/
DSpliteratorTester.java306 public static <T> void runSortedTests(Iterable<T> spliterable, Comparator<T> comparator) { in runSortedTests() method in SpliteratorTester
325 public static <T extends Comparable<T>> void runSortedTests(Iterable<T> spliterable) { in runSortedTests() method in SpliteratorTester
326 runSortedTests(spliterable, T::compareTo); in runSortedTests()
DTreeMapTest.java648 SpliteratorTester.runSortedTests(keys); in test_spliterator_keySet()
740 SpliteratorTester.runSortedTests(entries, (a, b) -> (a.getKey().compareTo(b.getKey()))); in test_spliterator_entrySet()