how to turn non-parallel junit parameterized tests into parallel run how to turn non-parallel junit parameterized tests into parallel run multithreading multithreading

how to turn non-parallel junit parameterized tests into parallel run


The library JUnit Toolbox provides a ParallelParameterized runner. Replace

@RunWith(Parameterized.class)public class YourTest {

with

@RunWith(ParallelParameterized.class)public class YourTest {