I have a unit test that is failing and I\'m unsure why. I want to be able to see all invocations on the mock that occur in the System Under Test. This is not the behavior th
This feature is builtin since Mockito 1.9.5. Just use
mock(ClassToMock.class, withSettings().verboseLogging())