@Test(dataProvider = "LongStream.limit") public void testLongSubsizedWithRange(String description, UnaryOperator<LongStream> fs) { // Range is [0, Long.MAX_VALUE), splits are SUBSIZED // Such a size will induce out of memory errors for incorrect // slice implementations withData(longs()). stream(s -> fs.apply(s)). without(LongStreamTestScenario.CLEAR_SIZED_SCENARIOS). exercise(); }
@Test(dataProvider = "longs") public void testLongs(TestData.OfLong data, ResultAsserter<Iterable<Long>> ra) { withData(data). stream(s -> s). without(LongStreamTestScenario.CLEAR_SIZED_SCENARIOS). resultAsserter(ra). exercise(); }
@Test(dataProvider = "LongStream.limit") public void testLongSubsizedWithRange(String description, UnaryOperator<LongStream> fs) { // Range is [0, Long.MAX_VALUE), splits are SUBSIZED // Such a size will induce out of memory errors for incorrect // slice implementations withData(longs()). stream(s -> fs.apply(s)). without(LongStreamTestScenario.PAR_STREAM_TO_ARRAY_CLEAR_SIZED). exercise(); }
@Test(dataProvider = "longs") public void testLongs(TestData.OfLong data, ResultAsserter<Iterable<Long>> ra) { withData(data). stream(s -> s). without(LongStreamTestScenario.PAR_STREAM_TO_ARRAY_CLEAR_SIZED). resultAsserter(ra). exercise(); }