Searched refs:reportInvocation (Results 1 – 8 of 8) sorted by relevance
/external/mockito/src/test/java/org/mockito/internal/debugging/ |
D | VerboseMockInvocationLoggerTest.java | 48 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, "return value")); in should_print_invocation_with_return_value() 60 …listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException()… in should_print_invocation_with_exception() 71 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, "whatever")); in should_print_if_method_has_not_been_stubbed() 80 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, "whatever")); in should_print_stubbed_info_if_availbable() 90 …listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException()… in should_log_count_of_interactions() 93 …listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException()… in should_log_count_of_interactions() 96 …listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException()… in should_log_count_of_interactions()
|
/external/mockito/src/test/java/org/mockito/internal/handler/ |
D | InvocationNotifierHandlerTest.java | 69 …verify(listener1).reportInvocation(new NotifiedMethodInvocationReport(invocation, "returned value"… in should_notify_all_listeners_when_calling_delegate_handler() 70 …verify(listener2).reportInvocation(new NotifiedMethodInvocationReport(invocation, "returned value"… in should_notify_all_listeners_when_calling_delegate_handler() 83 …verify(listener1).reportInvocation(new NotifiedMethodInvocationReport(invocation, (Object) compute… in should_notify_all_listeners_when_called_delegate_handler_returns_ex() 84 …verify(listener2).reportInvocation(new NotifiedMethodInvocationReport(invocation, (Object) compute… in should_notify_all_listeners_when_called_delegate_handler_returns_ex() 99 …verify(listener1).reportInvocation(new NotifiedMethodInvocationReport(invocation, parseException)); in should_notify_all_listeners_when_called_delegate_handler_throws_exception_and_rethrow_it() 100 …verify(listener2).reportInvocation(new NotifiedMethodInvocationReport(invocation, parseException)); in should_notify_all_listeners_when_called_delegate_handler_throws_exception_and_rethrow_it() 106 …willThrow(new NullPointerException()).given(customListener).reportInvocation(any(MethodInvocationR… in should_report_listener_exception() 132 public void reportInvocation(MethodInvocationReport methodInvocationReport) { in reportInvocation() method in InvocationNotifierHandlerTest.CustomListener
|
D | MockHandlerImplTest.java | 74 …doThrow(new Throwable()).when(throwingListener).reportInvocation(any(MethodInvocationReport.class)… in should_throw_mockito_exception_when_invocation_handler_throws_anything()
|
/external/mockito/src/test/java/org/mockitousage/debugging/ |
D | InvocationListenerCallbackTest.java | 72 orderedVerify.verify(listener1).reportInvocation(any(MethodInvocationReport.class)); in should_call_all_listener_when_mock_throws_exception() 73 orderedVerify.verify(listener2).reportInvocation(any(MethodInvocationReport.class)); in should_call_all_listener_when_mock_throws_exception() 93 public void reportInvocation(MethodInvocationReport mcr) {
|
/external/mockito/src/main/java/org/mockito/internal/handler/ |
D | InvocationNotifierHandler.java | 49 … listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, returnValue)); in notifyMethodCall() 59 … listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, exception)); in notifyMethodCallException()
|
/external/mockito/src/main/java/org/mockito/listeners/ |
D | InvocationListener.java | 27 void reportInvocation(MethodInvocationReport methodInvocationReport); in reportInvocation() method
|
/external/mockito/src/test/java/org/mockitousage/bugs/ |
D | ListenersLostOnResetMockTest.java | 27 verify(invocationListener).reportInvocation(any(MethodInvocationReport.class)); in listener()
|
/external/mockito/src/main/java/org/mockito/internal/debugging/ |
D | VerboseMockInvocationLogger.java | 33 public void reportInvocation(MethodInvocationReport methodInvocationReport) { in reportInvocation() method in VerboseMockInvocationLogger
|