Home
last modified time | relevance | path

Searched refs:MethodInvocationReport (Results 1 – 8 of 8) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/debugging/
DVerboseMockInvocationLogger.java11 import org.mockito.listeners.MethodInvocationReport;
33 public void reportInvocation(MethodInvocationReport methodInvocationReport) { in reportInvocation()
41 private void printReturnedValueOrThrowable(MethodInvocationReport methodInvocationReport) { in printReturnedValueOrThrowable()
51 private void printStubInfo(MethodInvocationReport methodInvocationReport) { in printStubInfo()
/external/mockito/src/test/java/org/mockitousage/debugging/
DInvocationListenerCallbackTest.java12 import org.mockito.listeners.MethodInvocationReport;
111 orderedVerify.verify(listener1).reportInvocation(any(MethodInvocationReport.class)); in should_call_all_listener_when_mock_throws_exception()
112 orderedVerify.verify(listener2).reportInvocation(any(MethodInvocationReport.class)); in should_call_all_listener_when_mock_throws_exception()
141 public void reportInvocation(MethodInvocationReport mcr) {
/external/mockito/src/test/java/org/mockitousage/bugs/
DListenersLostOnResetMockTest.java10 import org.mockito.listeners.MethodInvocationReport;
27 verify(invocationListener).reportInvocation(any(MethodInvocationReport.class)); in listener()
/external/mockito/src/test/java/org/mockito/internal/handler/
DInvocationNotifierHandlerTest.java17 import org.mockito.listeners.MethodInvocationReport;
105 … NullPointerException()).given(customListener).reportInvocation(any(MethodInvocationReport.class)); in should_report_listener_exception()
129 public void reportInvocation(MethodInvocationReport methodInvocationReport) { in reportInvocation()
DMockHandlerImplTest.java23 import org.mockito.listeners.MethodInvocationReport;
72 …doThrow(new Throwable()).when(throwingListener).reportInvocation(any(MethodInvocationReport.class)… in should_throw_mockito_exception_when_invocation_handler_throws_anything()
/external/mockito/src/main/java/org/mockito/internal/handler/
DNotifiedMethodInvocationReport.java9 import org.mockito.listeners.MethodInvocationReport;
16 public class NotifiedMethodInvocationReport implements MethodInvocationReport {
/external/mockito/src/main/java/org/mockito/listeners/
DInvocationListener.java27 void reportInvocation(MethodInvocationReport methodInvocationReport); in reportInvocation()
DMethodInvocationReport.java18 public interface MethodInvocationReport { interface