@Test
@SpecAssertion(section = "5.1.2", id = "b")
public void testValidationWithSeveralGroups() throws Exception {
String methodName = "setAllData";
Object object = new User();
Method method = User.class.getMethod( methodName, String.class, String.class, Date.class );
Object[] parameterValues = new Object[] { null, "S", null };
Set<ConstraintViolation<Object>> violations = executableValidator.validateParameters(
object,