Searched refs:MethodInvocationReport (Results 1 – 8 of 8) sorted by relevance
11 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()
12 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) {
10 import org.mockito.listeners.MethodInvocationReport;27 verify(invocationListener).reportInvocation(any(MethodInvocationReport.class)); in listener()
17 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()
23 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()
9 import org.mockito.listeners.MethodInvocationReport;16 public class NotifiedMethodInvocationReport implements MethodInvocationReport {
27 void reportInvocation(MethodInvocationReport methodInvocationReport); in reportInvocation()
18 public interface MethodInvocationReport { interface