Home | History | Annotate | Download | only in debugging

Lines Matching defs:listener

19         LoggingListener listener = new LoggingListener(true);
22 assertEquals("", listener.getStubbingInfo());
28 LoggingListener listener = new LoggingListener(false);
31 listener.foundUnusedStub(invocationAt("at com.FooTest:30"));
32 listener.foundUnusedStub(invocationAt("at com.FooTest:32"));
41 "[Mockito] 2. at com.FooTest:32", listener.getStubbingInfo());
55 LoggingListener listener = new LoggingListener(false);
58 listener.foundStubCalledWithDifferentArgs(invocationAt("at com.FooTest:20"), invocationMatcherAt("at com.Foo:100"));
59 listener.foundStubCalledWithDifferentArgs(invocationAt("at com.FooTest:21"), invocationMatcherAt("at com.Foo:121"));
70 "[Mockito] Invoked at com.Foo:121", listener.getStubbingInfo());
76 LoggingListener listener = new LoggingListener(true);
79 listener.foundUnusedStub(invocationAt("at com.FooTest:30"));
80 listener.foundStubCalledWithDifferentArgs(invocationAt("at com.FooTest:20"), invocationMatcherAt("at com.Foo:100"));
81 listener.foundUnstubbed(invocationMatcherAt("at com.Foo:96"));
98 "[Mockito] 1. at com.Foo:96", listener.getStubbingInfo());
104 LoggingListener listener = new LoggingListener(false);
107 listener.foundUnstubbed(new InvocationBuilder().toInvocationMatcher());
110 assertEquals("", listener.getStubbingInfo());
116 LoggingListener listener = new LoggingListener(true);
119 listener.foundUnstubbed(invocationMatcherAt("com.Foo:20"));
127 "[Mockito] 1. com.Foo:20", listener.getStubbingInfo());