Searched refs:checkLongStreamDoesNotConsumeElements (Results 1 – 1 of 1) sorted by relevance
190 checkLongStreamDoesNotConsumeElements(() -> LongStream.of(1, 2, 3, 4), 4); in testNoEvaluationForSizedStream()191 …checkLongStreamDoesNotConsumeElements(() -> LongStream.of(1, 2, 3, 4).skip(1).limit(2).skip(1), 1); in testNoEvaluationForSizedStream()214 …private void checkLongStreamDoesNotConsumeElements(Supplier<LongStream> supplier, long expectedCou… in checkLongStreamDoesNotConsumeElements() method in CountTest