}
public void testDoesNotMatchWithDifferentParameter() {
InvocationMocker invocationMocker = new InvocationMocker(
new InvocationMatcher[]{
new MethodNameMatcher("example"),
new ArgumentsMatcher(new Constraint[]{C.eq("arg1"), C.eq("not arg2")})}, null);
assertFalse("Should not have matched", invocationMocker.matches(exampleInvocation));
}