"For more info see javadoc for Matchers class."
));
}
public void argumentsAreDifferent(PrintableInvocation wanted, PrintableInvocation actual, HasStackTrace actualStackTrace) {
ActualArgumentsAreDifferent cause = new ActualArgumentsAreDifferent(join(
"Actual invocation has different arguments:",
actual.toString()
));
cause.setStackTrace(actualStackTrace.getStackTrace());
if (JUnitTool.hasJUnit()) {
throw JUnitTool.createArgumentsAreDifferentException(
join("Argument(s) are different! Wanted:", wanted.toString()),
cause,