没有找到匹配方法 - 单元测试PowerMockito的测试

时间:2017-02-09 07:55:09

标签: unit-testing spring-mvc powermockito

我使用了@Preparefortest内部类

@RunWith(PowerMockRunner.class)
 public class TestClass{

 @PrepareForTest({myclass.class})
 @Test()
 public void testCase1() throws Exception {
    mycode here
 }

 @Test()
 public void testCase2() throws Exception{
    mycode here
 }
}

当我为类TestClass运行覆盖测试时,它就成功了!但是,当我只运行testCase1()时,它的错误是initializationError“java.lang.Exception:找不到匹配方法testCase1的测试”。

0 个答案:

没有答案