Searched refs:setLowerBound (Results 1 - 1 of 1) sorted by relevance

/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java1021 public CallCount setLowerBound(long lowerBound) { method in class:LittleMock.CallCount
1056 public CallCount times(int times) { return setLowerBound(times).setUpperBound(times); }
1057 public CallCount atLeast(long n) { return setLowerBound(n).setUpperBound(Long.MAX_VALUE); }
1058 public CallCount atLeastOnce() { return setLowerBound(1).setUpperBound(Long.MAX_VALUE); }
1059 public CallCount between(long n, long m) { return setLowerBound(n).setUpperBound(m); }

Completed in 156 milliseconds