Mockito匹配器是如何工作的?Mockito参数匹配器(如any, argThat, eq, same,和ArgumentCaptor.capture())行为与Hamcrest Matcher大不相同。Mockito匹配程序经常导致InvalidUseOfMatchersException,即使在使用任何匹配器之后执行很长时间的代码中也是如此。Mockito匹配器遵循奇怪的规则,例如,如果给定方法中的一个参数使用Matcher,则只要求对所有参数使用Mockito匹配器。当重写时,Mockito匹配程序会导致NullPointerException。AnswerS或使用时(Integer) any()等。用Mockito匹配器以某种方式重构代码会产生异常和意外行为,并且可能会完全失败。为什么Mockito匹配器是这样设计的,它们是如何实现的?
2 回答
慕村9548890
TA贡献1884条经验 获得超4个赞
when
when
when(foo.quux(anyInt(), anyInt())).thenReturn(true);when(foo.quux(anyInt(), eq(5))).thenReturn(false);
foo.quux(3 /*any int*/, 8 /*any other int than 5*/) //returns truefoo.quux(2 /*any int*/, 5) //returns false
true
.
添加回答
举报
0/150
提交
取消