Searched refs:assertLongConcat (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
D | ConcatTest.java | 159 …private void assertLongConcat(Stream<Integer> s1, Stream<Integer> s2, boolean parallel, boolean or… in assertLongConcat() method in ConcatTest 209 assertLongConcat(c1.stream(), c2.stream(), false, true); in testLongConcat() 211 assertLongConcat(c1.parallelStream(), c2.parallelStream(), true, true); in testLongConcat() 213 assertLongConcat(c1.stream(), c2.parallelStream(), true, true); in testLongConcat() 215 assertLongConcat(c1.parallelStream(), c2.stream(), true, true); in testLongConcat() 218 assertLongConcat(c1.stream().unordered(), c2.stream(), false, false); in testLongConcat() 219 assertLongConcat(c1.stream(), c2.stream().unordered(), false, false); in testLongConcat() 220 assertLongConcat(c1.parallelStream().unordered(), c2.stream().unordered(), true, false); in testLongConcat()
|