Searched refs:assertPredicates (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
D | MatchOpTest.java | 98 …private <T> void assertPredicates(List<T> source, Kind kind, Predicate<T>[] predicates, boolean...… in assertPredicates() method in MatchOpTest 107 assertPredicates(countTo(0), Kind.ANY, INTEGER_PREDICATES, false, false, false, false); in testStreamMatches() 108 assertPredicates(countTo(0), Kind.ALL, INTEGER_PREDICATES, true, true, true, true); in testStreamMatches() 109 assertPredicates(countTo(0), Kind.NONE, INTEGER_PREDICATES, true, true, true, true); in testStreamMatches() 111 assertPredicates(countTo(1), Kind.ANY, INTEGER_PREDICATES, true, false, false, true); in testStreamMatches() 112 assertPredicates(countTo(1), Kind.ALL, INTEGER_PREDICATES, true, false, false, true); in testStreamMatches() 113 assertPredicates(countTo(1), Kind.NONE, INTEGER_PREDICATES, false, true, true, false); in testStreamMatches() 115 assertPredicates(countTo(5), Kind.ANY, INTEGER_PREDICATES, true, false, true, true); in testStreamMatches() 116 assertPredicates(countTo(5), Kind.ALL, INTEGER_PREDICATES, true, false, false, false); in testStreamMatches() 117 assertPredicates(countTo(5), Kind.NONE, INTEGER_PREDICATES, false, true, false, false); in testStreamMatches()
|