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