I was wondering if there is more elegant way to verify the arguments other than using a class that extends ArgumentMatcher?
Thanks.
I was wondering if there is more elegant way to verify the arguments other than using a class that extends ArgumentMatcher?
Thanks.
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.
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 anArgumentMatcher
.