Alternative to extending ArgumentMatcher for argument verification for mockito

5.6k Views Asked by At

I was wondering if there is more elegant way to verify the arguments other than using a class that extends ArgumentMatcher?

Thanks.

2

There are 2 best solutions below

1
On BEST ANSWER

Are you looking for ArgumentCaptor as a way of doing this? Refer to http://docs.mockito.googlecode.com/hg/latest/org/mockito/Mockito.html#captors . This lets you perform whatever checks you like on the values that were passed to your mock's methods. It's often much simpler than setting up an ArgumentMatcher.

0
On

I don't know what you mean by "more elegant", but an alternative to implementing a custom ArgumentMatcher is to use the Mockito.argThat matcher that takes a Hamcrest matcher as an argument. There are many Hamcrest matchers available, both in the Hamcrest library itself and from third parties, so that could save you from writing your own custom argument matcher, but if there isn't one that you need already available, you can write a custom Hamcrest matcher instead of a Mockito ArgumentMatcher. Whether that is more elegant or not is in the eye of the beholder.

An example of its use can be seen this answer to Mockito's Matcher vs Hamcrest Matcher.