Searched refs:INTEGER_PREDICATES (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 | 82 private static final Predicate<Integer>[] INTEGER_PREDICATES field 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() [all …]
|