* @see org.mockito.internal.progress.ArgumentMatcherStorage#reportAnd()
*/
public HandyReturnValues reportAnd() {
assertState(!matcherStack.isEmpty(), "No matchers found for And(?).");
And and = new And(popLastArgumentMatchers(2));
matcherStack.push(new LocalizedMatcher(and));
return new HandyReturnValues();
}