Using Mockito in Java how to verify a method was called only once with exact parameters ignoring calls to other methods?
Sample code:
public class Mo
Mockito.verify(foo, Mockito.times(1)).add("1"); Mockito.verify(foo, Mockito.times(1)).add(Mockito.anyString());
The first verify checks the expected parametrized call and the second verify checks that there was only one call to add at all.
verify
add