Returns a matcher that matches when the method is executed at most N times.
public static final function atMost(int $allowedInvocations) : InvokedAtMostCountMatcher { return new InvokedAtMostCountMatcher($allowedInvocations); }