/* (non-Javadoc)
* @see org.mockito.internal.progress.ArgumentMatcherStorage#reportOr()
*/
public HandyReturnValues reportOr() {
assertState(!matcherStack.isEmpty(), "No matchers found.");
Or or = new Or(popLastArgumentMatchers(2));
matcherStack.push(new LocalizedMatcher(or));
return new HandyReturnValues();
}