@SpecAssertion(section = "5.2", id = "h"),
@SpecAssertion(section = "5.2", id = "i")
})
public void testOneViolation() throws Exception {
Constructor<Customer> constructor = Customer.class.getConstructor();
Customer returnValue = new Customer();
Set<ConstraintViolation<Customer>> violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue
);