* @see org.mockito.internal.progress.ArgumentMatcherStorage#reportNot()
*/
public HandyReturnValues reportNot() {
assertState(!matcherStack.isEmpty(), "No matchers found for Not(?).");
Not not = new Not(popLastArgumentMatchers(1).get(0));
matcherStack.push(new LocalizedMatcher(not));
return new HandyReturnValues();
}