verifyPrivate 上的 PowerMock MethodNotFoundException 方法接受类

发布于 2024-11-23 18:52:59 字数 614 浏览 1 评论 0原文

PowerMock 抛出 org.powermock.reflect.exceptions.MethodNotFoundException:在类 com.something.Something 的类层次结构中找不到与名称 methodInsideFoo 匹配的方法。。

测试代码:

    Something spied = spy(new Something());

    doNothing().when( spied, "methodInsideFoo", "ABC", Some.class );

    spied.foo( "ABC", Some.class );

    verifyPrivate( spied ).invoke( "methodInsideFoo", "ABC", Some.class );

这是我试图模拟的方法:

protected void methodInsideFoo ( String a, Class b )
{
    System.out.println("Should not see me");
}

但是如果我删除类(第二个参数),它就会起作用。我错过了什么吗?

PowerMock throws org.powermock.reflect.exceptions.MethodNotFoundException: No methods matching the name(s) methodInsideFoo were found in the class hierarchy of class com.something.Something..

Test code:

    Something spied = spy(new Something());

    doNothing().when( spied, "methodInsideFoo", "ABC", Some.class );

    spied.foo( "ABC", Some.class );

    verifyPrivate( spied ).invoke( "methodInsideFoo", "ABC", Some.class );

And this is the method I'm trying to mock:

protected void methodInsideFoo ( String a, Class b )
{
    System.out.println("Should not see me");
}

But if I remove Class (2nd parameter), it works. Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文