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