Home | History | Annotate | Download | only in internal

Lines Matching full:matchers

25 import org.easymock.internal.matchers.Equals;

36 private final List<IArgumentMatcher> matchers;
39 List<IArgumentMatcher> matchers) {
40 this(invocation, matchers, null);
44 List<IArgumentMatcher> matchers, @SuppressWarnings("deprecation")
48 this.matchers = (matcher == null) ? createMissingMatchers(invocation,
49 matchers) : null;
53 List<IArgumentMatcher> matchers) {
54 if (matchers != null) {
55 if (matchers.size() != invocation.getArguments().length) {
58 + " matchers expected, " + matchers.size()
61 return matchers;
79 && ((this.matchers == null && other.matchers == null) || (this.matchers != null && this.matchers
80 .equals(other.matchers)));
89 return matchers != null ? this.invocation.getMock().equals(
97 if (arguments.length != matchers.size()) {
101 if (!matchers.get(i).matches(arguments[i])) {
110 return matchers != null ? myToString() : invocation.toString(matcher);
117 for (Iterator<IArgumentMatcher> it = matchers.iterator(); it.hasNext();) {