With Mockito, I can do the following:
verify(someService).process(any(Person.class));
But how to write it if process accepts Collection<Person> instead? I canβt understand how to write correctly. Just get syntax errors ...
java generics parameters mockito verification
Svish May 30 '11 at 11:34 2011-05-30 11:34
source share