Mockito Matchers.any(..) 仅在一个参数上



我想这样做:

 verify(function, Mockito.times(1)).doSomething(argument1, Matchers.any(Argument2.class));

其中 argument1Argument1 类型的特定实例,参数 2Argument2 类型的任何实例。

但是我得到一个错误:

org.mockito.exceptions.misusing.InvalidUseOfMatchersException:  Invalid use of argument matchers! 2 matchers expected, 1 recorded. This exception may occur if matchers are combined with raw values:
    //incorrect:
    someMethod(anyObject(), "raw String"); When using matchers, all arguments have to be provided by matchers. For example:
    //correct:
    someMethod(anyObject(), eq("String by matcher"));

按照这个建议,我可以写以下内容,一切都很好:

 verify(function, Mockito.times(1)).doSomething(Matchers.any(Argument1.class), Matchers.any(Argument2.class));

我正在寻找 Argument1 类型的任何参数和 Argument2 类型的任何参数。

我怎样才能实现这种期望的行为?

有多个可能的参数匹配器,其中一个是eq,这在异常消息中提到。用:

verify(function, times(1)).doSomething(eq(arg1), any(Argument2.class));

(静态导入应该在那里 - eq()Matchers.eq())。

你也有same()(它引用相等性,即==),更一般地说,你可以编写自己的匹配器。

相关内容

  • 没有找到相关文章