在Java中使用Mockito如何验证方法只调用一次精确参数而忽略对其他方法的调用?
示例代码:
public class MockitoTest {
interface Foo {
void add(String str);
void clear();
}
@Test
public void testAddWasCalledOnceWith1IgnoringAllOtherInvocations() throws Exception {
// given
Foo foo = Mockito.mock(Foo.class);
// when
foo.add("1"); // call to verify
foo.add("2"); // !!! don't allow any other calls to add()
foo.clear(); // calls to other methods should be ignored
// then
Mockito.verify(foo, Mockito.times(1)).add("1");
// TODO: don't allow all other invocations with add()
// but ignore all other calls (i.e. the call to clear())
}
}
TODO: don't allow all other invocations with add()
部分应该做些什么?
尝试失败:
verifyNoMoreInteractions(foo);
不。它不允许调用其他方法,如clear()
。
verify(foo, times(0)).add(any());
不。它没有考虑到我们允许一次调用add("1")
。
答案 0 :(得分:41)
Mockito.verify(foo, Mockito.times(1)).add("1");
Mockito.verify(foo, Mockito.times(1)).add(Mockito.anyString());
第一个verify
检查预期的参数化调用,第二个verify
检查只有一个add
的调用。
答案 1 :(得分:5)
以前的答案可以进一步简化。
verify
单个参数times(1)
方法只是data1 = [1,2,3,4,5,6,7,8,9]
data2 = [Nan, Nan, Nan, 14,15,16,17,18,19]
实现的别名。
答案 2 :(得分:0)
对于正在Junit 5/Jupiter
和Mockito
中寻求模拟和验证静态方法的任何人,请看一看这个不错的https://stackoverflow.com/a/63242611/4809938