}
int minNumberOfInvocations = _wantedNumberOfInvocations - _aberration;
if (invocationCount < minNumberOfInvocations) {
Location lastLocation = finder.getLastLocation(invocations);
reporter.tooLittleActualInvocations(new AtLeastDiscrepancy(minNumberOfInvocations, invocationCount), wanted,
lastLocation);
}
int maxNumberOfInvocations = _wantedNumberOfInvocations + _aberration;
if (invocationCount > maxNumberOfInvocations) {
reporter.wantedAtMostX(maxNumberOfInvocations, invocationCount);