@SpecAssertion(section = "5.2", id = "g"),
@SpecAssertion(section = "5.2", id = "h"),
@SpecAssertion(section = "5.2", id = "i")
})
public void testOneViolationForCascadedValidation() throws Exception {
Item leaf = new Item( "foo" );
Constructor<OrderLine> constructor = OrderLine.class.getConstructor( Item.class );
Object[] parameterValues = new Object[] { leaf };
Set<ConstraintViolation<OrderLine>> violations = executableValidator.validateConstructorParameters(
constructor,