Some mocks may need a reset before the test is run. Especially if the same one is used in several tests, it can be handy to reset it just before the test is run.
@Autowire
MyService myService
@Autowire
OtherService otherService
@Before
public void resetMocks() {
Mockito.reset(myService);
Mockito.reset(otherService);
}