I\'ve been trying to figure out how to run parameterized tests in Junit4 together with PowerMock. The problem is that to use PowerMock you need to decorate your test class w
The following solution worked for me!
@RunWith(PowerMockRunner.class) @PowerMockRunnerDelegate(Parameterized.class)