Junit Parameterized tests together with Powermock - how?
I had the same issue. Unfortunately it would not let me use a PowerMock Rule due to the JVM I had. Instead of the rule I used RunnerDelegate.
@RunWith(PowerMockRunner.class)
@PowerMockRunnerDelegate(Parameterized.class)
Yes this works by using the PowerMock Rule available if you use JUnit 4.7+.