PowerMock和Mockito UnfinishedVerificationException

时间:2019-01-04 15:47:55

标签: java mockito testng powermock powermockito

我很难让PowerMock和Mockito正常工作。

我正在使用这些版本。它们应该是compatible

  • powermock-core v 1.7.4
  • powermock-api-mockito v 1.7.4
  • powermock-module-junit4 v 1.7.4
  • mockito-all 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错误。

3 个答案:

答案 0 :(得分:2)

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

要执行此操作,您有2个选项:

  1. 使用JUnit运行测试。

  2. 或配置TestNG,以使其使用PowerMock对象工厂。 here很好地解释了配置细节。

答案 1 :(得分:1)

我无法在junit4上复制该问题。事实证明这是TestNG的问题。

答案 2 :(得分:0)

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

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

@RunWith 注释将 powermock 初始化为 junit 的运行器

@PrepareForTest 注解用于模拟 final 类、具有 final、私有、静态或本地方法的类,以便 powermock 可以从这些类的字节码中读取(因为 java 不允许反射私有方法)。