@SpecAssertion(section = "5.2", id = "j")
})
public void testOneViolationFromCrossParameterConstraint() throws Exception {
String methodName = "setAddress";
Object object = new User();
Method method = User.class.getMethod( methodName, String.class, String.class );
Object[] parameterValues = new Object[] { null, null };
Set<ConstraintViolation<Object>> violations = executableValidator.validateParameters(
object,