5152535455565758596061
* * @param times The number of times this expectation should be matched */ public final ClientDriverExpectation times(int times) { if (times < 1) { throw new ClientDriverInvalidExpectationException("Expectation cannot be matched less than once"); } numberOfTimes = times; return this; }