I\'m using Mockito to write a unit test in Java, and I\'d like to verify that a certain method is the last one called on an object.
I\'m doing something lik
Not 100% on topic but I was just looking to find the opposite of verify, and this was the only relevant result, it ends up I was after Mockito.verifyZeroInteractions(mock);
Just incase anyone else ends up here looking for this...