我有一个运行的 JUNIT 测试PowerMockRunner.class
。
现在,我正在添加一个新测试,但是,我想同时运行这两个测试。
我知道我可以使用@RunWith(ConcurrentTestRunner.class)
或仅通过自己创建一个并发执行器来做到这一点。
PowerMock 有什么可做的吗?
示例代码:
@RunWith(PowerMockRunner.class)
@PrepareForTest(ClassWithStaticMethod.class)
@SuppressStaticInitializationFor("ClassWithStaticMethod")
public class PowerMockTest {
@org.junit.Test
public void myTest() {
...
}
//This new Test
@org.junit.Test
public void myNewTest() {
...
}
}