48495051525354
addExpectation(expectation); } public RepeatingExpectation(int minimum, int maximum) { this.occurences = new OccurrencesImpl(minimum, maximum); }
52535455565758
public RepeatingExpectation(int minimum, int maximum) { this.occurences = new OccurrencesImpl(minimum, maximum); } public RepeatingExpectation() { this.occurences = new OccurrencesImpl(); }
176177178179180181182
return new ExpectedCallImpl(object, methodIdentifier, expectedArguments); } // javadoc inherited public Occurrences createOccurrences() { return new OccurrencesImpl(); }