使用 Mockito 测试间接方法调用

发布于 2024-11-27 22:54:04 字数 370 浏览 0 评论 0原文

我有一个方法 a(),在适当的情况下应该调用另一个方法 b()b() 不属于模拟对象,但 a() 属于模拟对象。 我目前正在尝试这个:

verify(mockedObject,times(1)).b(); notMocked.a();

看来b()的调用没有被Mockito捕获。

谢谢

更新:我想出了这个 hack 来发出方法调用的信号,尽管我对此一点也不满意。 when(mocked.b()).thenThrow(new ItWasCalledException());

I have a method a() that, given the right circumstances should call another method b(). b() does not belong to a mocked object, but a() does.
I'm currently trying this:

verify(mockedObject,times(1)).b();
notMocked.a();

It seems that the invocation of b() is not captured by Mockito.

Thanks

Update: I came up with this hack to signal the method invocation, although I not happy at all with it.
when(mocked.b()).thenThrow(new ItWasCalledException());

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叶落知秋 2024-12-04 22:54:05

我应该以不同的顺序完成它。

notMocked.a(); verify(mockedObject,times(1)).b();

这就像一个魅力。

I should have done it in a different order.

notMocked.a(); verify(mockedObject,times(1)).b();

This works like a charm.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文