How to clean up mocks in spring tests when using Mockito
About placing the reset after the test method I think reseting the mocks should better be done after the test method, as it implies there is indeed something that happened during the test that need to be cleaned. If the reset is done before the test method, I would feel unsure, what the heck happened … Read more