55565758596061
} public static synchronized void reportNot() { Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); assertState(stack != null, "no matchers found."); stack.push(new Not(popLastArgumentMatchers(1).get(0))); }
59606162636465
public static synchronized void reportNot() { Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(Thread .currentThread()); assertState(stack != null, "no matchers found."); stack.push(new Not(popLastArgumentMatchers(1).get(0))); }
82838485868788
} public static void reportNot() { final Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); assertState(stack != null, NO_MATCHERS_FOUND); stack.push(new Not(popLastArgumentMatchers(1).get(0))); }