You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AnnotationDrivenStaticEntityMockingControl aspect ensures that all expectations on the mock have been fulfilled automatically when the invocation of the advised method (typically an @Test method) completes successfully (i.e., does not throw an exception). This behavior is normally sufficient; however, there are times when it would be convenient to be able to manually (programmatically) verify the recorded expectations and/or reset the state of the mock.
Deliverables
Introduce a verify() method in AnnotationDrivenStaticEntityMockingControl.
Introduce a reset() method in AnnotationDrivenStaticEntityMockingControl.