Home | History | Annotate | Download | only in mockito

Lines Matching defs:atLeast

222  * //verification using atLeast()/atMost()

224 * verify(mockedList, atLeast(2)).add("five times");
794 * verify(mock, timeout(100).atLeast(2)).someMethod();
1050 * inOrder.verify(person.getAddress("the docks").getStreet(Locale.ITALIAN), atLeast(1)).getName();
1482 * verify(mock, atLeast(2)).someMethod("was called at least two times");
1967 * Alias to <code>atLeast(1)</code>.
1980 * verify(mock, atLeast(3)).someMethod("some arg");
1989 public static VerificationMode atLeast(int minNumberOfInvocations) {
1990 return VerificationModeFactory.atLeast(minNumberOfInvocations);
2016 * <li>will not mark the third invocation as verified, unlike atLeast( 2 )</li>
2064 * verify(mock, timeout(100).atLeast(2)).someMethod();