Searched defs:CallCount (Results 1 - 1 of 1) sorted by relevance

/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java149 public static <T> T verify(T mock, CallCount howManyTimes) {
181 private static <T> T verify(T mock, CallCount howManyTimes, OrderChecker orderCounter) {
197 private static List<CallCount> sUnfinishedCallCounts = new ArrayList<CallCount>();
245 /** Creates a {@link CallCount} that matches exactly the given number of calls. */
246 public static CallCount times(long n) { return new CallCount(n, n); }
253 /** Creates a {@link CallCount} that only matches if the method was never called. */
254 public static CallCount never() { return new CallCount(
1002 private static class CallCount { class in class:LittleMock
1006 public CallCount(long lowerBound, long upperBound) { method in class:LittleMock.CallCount
[all...]

Completed in 37 milliseconds