35363738394041
return new AtLeastVerification(count); } public static VerificationMode atMost(final int count) { checkArgument(count > 0, "Times count must be greater than zero"); return new AtMostVerification(count); }