@Test
@SpecAssertion(section = "5.1.2", id = "e")
public void testTwoConstraintsOfSameType() throws Exception {
String methodName = "getLastName";
Object object = new Customer();
Method method = Customer.class.getMethod( methodName, CharSequence.class );
Object returnValue = "S";
Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
object,