PowerMock and Mockito UnfinishedVerificationException



我很难让PowerMock和Mockito工作。

我正在使用这些版本。它们应该是兼容的。

  • Powermock-Core v 1.7.4
  • Powermock-API-mockito v 1.7.4
  • 电源模拟模块-Junit4 V 1.7.4
  • 莫比托-所有 v 1.10.19

我也在使用TestNG,但我认为这对这个测试的结果没有任何影响。

我想模拟一个对象,在

模拟对象上调用一个方法,并验证在模拟对象方法中是否调用了一次私有方法。

构建了一个示例,希望能解释我想要完成的任务。

public class MyClass {
    public void execute(Object o) {
        valid(o);
    }
    private boolean valid(Object o) {
        return o != null;
    }
}

这是我的测试课

@RunWith(PowerMockRunner.class)
@PrepareForTest(MyClass.class)
public class TestClass {
    @After
    public void validate() {
        validateMockitoUsage();
    }
    @Test
    public void executeTest() throws Exception {
        //Initialize the Class and create the spy
        MyClass myClass = PowerMockito.spy(new MyClass());
        //Execute the method which I wish to test
        myClass.execute(null);
        //I want to verify that the private valid method was called once.
        PowerMockito.verifyPrivate(myClass, times(1)).invoke("valid", anyObject());
    }
}

我收到以下错误:

org.mockito.exceptions.misusing.UnfinishedVerificationException: 
Missing method call for verify(mock) here:
-> at TestClass.executeTest(MyClass.java:14)
Example of correct verification:
    verify(mock).doSomething()
Also, this error might show up because you verify either of: 
final/private/equals()/hashCode() methods.
Those methods *cannot* be stubbed/verified.
Mocking methods declared on non-public parent classes is not supported.

at TestClass.validate(MyClass.java:60)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:124)
at org.testng.internal.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:59)
at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:458)
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:222)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:646)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:719)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:989)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:125)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109)
at org.testng.TestRunner.privateRun(TestRunner.java:648)
at org.testng.TestRunner.run(TestRunner.java:505)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:455)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:450)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:415)
at org.testng.SuiteRunner.run(SuiteRunner.java:364)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:84)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1208)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1137)
at org.testng.TestNG.runSuites(TestNG.java:1049)
at org.testng.TestNG.run(TestNG.java:1017)
at org.testng.IDEARemoteTestNG.run(IDEARemoteTestNG.java:73)
at org.testng.RemoteTestNGStarter.main(RemoteTestNGStarter.java:123)

试图搜索,但我找不到我的问题的解决方案。我相信这是一个常见的错误,我错误地使用了PowerMock/Mockito。

当您使用 TestNG 运行测试时,@RunWith注释将被忽略,因为它特定于 JUnit。

要完成此操作,您有 2 个选项:

  1. 使用 JUnit 运行测试。

  2. 或者配置 TestNG,使其使用 PowerMock 对象工厂。配置细节在这里得到了很好的解释。

我无法在 junit4 上自己复制这个问题。事实证明,这是TestNG的问题。

确保在使用 powermock 测试私有方法时添加了以下两个注释:

@RunWith(PowerMockRunner.class)
@PrepareForTest(<Class_containing_pvt_method>.class)

@RunWith注释将 Powermock 初始化为 Junit 的运行程序

@PrepareForTest注释用于模拟最终类,具有最终,私有,静态或本机方法的类,以便PowerMock可以从这些类的字节码中读取(因为Java不允许私有方法的反射)。

相关内容

  • 没有找到相关文章