I have a @Parameterized
junit test that spawns 50 tests:
@RunWith(Parameterized.class)
public class NurseRosteringSolveAllTurtleTest ... {
@Par
Not sure if it will help, but you can try a trick which I used with Eclipse and JUnit parameterized tests.
In JUnit launch configuration in "Test method" field you can write the full name of parameterized test, in your example it should be something like this 'solveDataFile[28: /path/to/your/file]'. Eclipse will complain that method does not exist but will still lunch it successfully.