I am running jUnit parameterized tests using Annotation @RunWith(Parameterized.class) in my Test class. However, now I also need to run my test class using PowerMockRunner and therefore use the @RunWith(PowerMockRunner.class) annotation @RunWith(PowerMockRunner.class) . Obviously this is not possible since only one @RunWith annotation is @RunWith .
How can I implement a parameterized test without using the @RunWith(Parameterized.class) annotation?
source share