It seems mockito only verifies whether a method of a mock object is called and the mock object always have something like doReturn().when(mock object)
doReturn().when(mock object)
B
Annotate the non-mock object with @Spy annotation and then check for verify(). Check this
@Spy
verify()