@SpecAssertions({
@SpecAssertion(section = "4.5.5", id = "a"),
@SpecAssertion(section = "4.5.5", id = "e")
})
public void testParameterConstraintsAddedInSubClassCausesException() throws Exception {
Object object = new SubClassAddingParameterConstraints();
Method method = getCreateEventMethod( object );
Object[] parameterValues = new Object[3];
executableValidator.validateParameters( object, method, parameterValues );
fail( "Overriding subclass method must add no parameter constraints. Expected exception wasn't thrown." );