使用 Matchers.any() 匹配模拟对象
Foo mockFoo1 = mock(Foo.class);
Foo mockFoo2 = mock(Foo.class);
when(((Foo) any()).someMethod()).thenReturn("Hello");
在上面的示例代码中,第 3 行失败并出现 NullPointerException。为什么会这样呢?
我对此的想法:
EITHER.. any()
应该用于匹配参数,而不是匹配触发方法的对象。
或者 .. any()
仅适用于真实的具体对象,而不适用于 mock
对象。
Foo mockFoo1 = mock(Foo.class);
Foo mockFoo2 = mock(Foo.class);
when(((Foo) any()).someMethod()).thenReturn("Hello");
In the above sample code, line 3 fails with a NullPointerException. Why so?
My thought on this:
EITHER.. any()
should be used for matching parameters rather than matching the objects on which methods are triggered.
OR .. any()
works only for real concrete objects and not mock
objects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要执行以下操作:
any()(anyObject()的较短别名)是一个Mockito参数匹配器,可以匹配任何参数,并且只能按如下方式使用:
any()返回null,因此您的代码相当于
You need to do:
any() (shorter alias to anyObject()) is an Mockito argument matcher that matches any argument and only should be used as follows:
any() returns null, so your code was equivalent to