81828384858687
} public static void reportOr(int count) { Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); assertState(stack != null, "no matchers found."); stack.push(new Or(popLastArgumentMatchers(count))); }
87888990919293
public static void reportOr(int count) { Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(Thread .currentThread()); assertState(stack != null, "no matchers found."); stack.push(new Or(popLastArgumentMatchers(count))); }
107108109110111112113
} public static void reportOr(final int count) { final Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); assertState(stack != null, NO_MATCHERS_FOUND); stack.push(new Or(popLastArgumentMatchers(count))); }