Home | History | Annotate | Download | only in junitrule

Lines Matching defs:methods

26         IMethods methods = mock(IMethods.class);
27 methods.simpleMethod();
29 verify(methods).simpleMethod();
37 IMethods methods = mock(IMethods.class);
39 verify(methods).simpleMethod();
47 IMethods methods = mock(IMethods.class);
49 verify(methods).simpleMethod();
50 verify(methods).byteReturningMethod();
64 IMethods methods = mock(IMethods.class);
66 verify(methods, never()).simpleMethod();
67 verify(methods).byteReturningMethod();
76 IMethods methods = mock(IMethods.class);
77 methods.simpleMethod();
79 verify(methods).byteReturningMethod();
80 verify(methods).simpleMethod();
112 IMethods methods = mock(IMethods.class);
114 verify(methods).simpleMethod();
119 IMethods methods = mock(IMethods.class);
120 methods.simpleMethod();
122 verify(methods).simpleMethod();