I have a @Parameterized junit test that spawns 50 tests:
@Parameterized
@RunWith(Parameterized.class) public class NurseRosteringSolveAllTurtleTest ... { @Par
For a subset of tests ex( 27 & 28 ) Just add:
`.subList( startInclusive, stopExclusive );`
before returning your parameters collection.
Non consecutive subsets:
Collection c = Arrays.asList( data ).subList( startInclusive, stopExclusive ); c.add( another subset ); return c;