@Test
@SpecAssertion(section = "5.1.2", id = "m")
public void testValidateParametersYieldsConstraintViolationIfValidateExecutableIsSetToNONEOnExecutableLevel()
throws Exception {
Object object = new WarehouseItem( null );
String methodName = "setName";
Method method = WarehouseItem.class.getMethod( methodName, String.class );
Object[] parameterValues = new Object[] { null };
Set<ConstraintViolation<Object>> violations = executableValidator.validateParameters(