Home | History | Annotate | Download | only in easymock

Lines Matching refs:arguments

40      * {@link AbstractMatcher#matches(Object[], Object[])}. The arguments

47 * @return true if the arguments match, false otherwise.
70 * <code>argumentMatches(Object, Object)</code> to check whether arguments
71 * pairs match. If all the arguments match, true is returned, otherwise
77 * the expected arguments.
79 * the actual arguments.
80 * @return true if the arguments match, false otherwise.
119 * of the arguments separated by commas.
121 * @param arguments
122 * the arguments to be used in the string representation.
125 public String toString(Object[] arguments) {
126 if (arguments == null)
127 arguments = new Object[0];
131 for (int i = 0; i < arguments.length; i++) {
135 result.append(argumentToString(arguments[i]));