how to pass in multiple ArgumentMatchers to Mockito

3k Views Asked by At

I have two custom ArgumentMatchers and I'd like my mock to return a different value based on the argument value.

Example:

when(myMock.method(new ArgMatcher1()).thenReturn(false);
when(myMock.method(new ArgMatcher2()).thenReturn(true);

Unfortunately, the second call to when() results in an exception. This makes sense to me because, if the argument matches both ArgumentMatchers, Mockito wouldn't know whether to return true or false. Is there a way to do this in Mockito? It could even be something like:

when(myMock.method(new ArgMatcher2()).thenReturn(false).elseReturn(true);
3

There are 3 best solutions below

0
On

Switch to syntax:

doAnswer(args->false).when(myMock).myMethod(any());
0
On

I'm not sure how your matchers are coded, but having two different matchers is supported of course, maybe the method you are stubbing is not mockable via Mockito (final).

Also for the record it is possible to tell the stub to return different return values in different ways :

when(myMock.method(new ArgMatcher2()).thenReturn(false, false, true).thenReturn(true);
0
On

If you're interested in returning a default value from Mockito, then this I have achieved like that:

when(myMock.myMethod(any())).thenReturn(true);
when(myMosk.myMethod("some other argumetn")).thenReturn(true);

Will it help you? Hard to say, I haven't used matchers the way you do with new keyword. It might be, that Mockito doesn't understand that well your custom matchers.