Try:
verify(someService).process(ArgumentMatchers.<Collection<Person>>any());
Actually, IntelliJ automatically suggested this fix when I typed any()
… Unfortunately you cannot use static import in this case.
Try:
verify(someService).process(ArgumentMatchers.<Collection<Person>>any());
Actually, IntelliJ automatically suggested this fix when I typed any()
… Unfortunately you cannot use static import in this case.