Mockito:如何验证一个方法只被调用了一次,参数精确,忽略了对其他方法的调用?

2022-08-31 13:58:52

在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()

已尝试失败:

  1. verifyNoMoreInteractions(foo);

不。它不允许调用其他方法,如 。clear()

  1. verify(foo, times(0)).add(any());

不。它没有考虑到我们允许一个调用到 。add("1")


答案 1
Mockito.verify(foo, Mockito.times(1)).add("1");
Mockito.verify(foo, Mockito.times(1)).add(Mockito.anyString());

第一个检查预期的参数化调用,第二个检查是否只有一个调用。verifyverifyadd


答案 2

前面的答案可以进一步简化。

Mockito.verify(foo).add("1");
Mockito.verify(foo).add(Mockito.anyString());

单参数方法只是实现的别名。verifytimes(1)


推荐