@SpecAssertion(section = "4.5.5", id = "b"),
@SpecAssertion(section = "4.5.5", id = "e")
})
public void testConstrainedParameterInOneMethodOfParallelInterfacesCausesException()
throws Exception {
Object object = new ImplementationOfConstrainedAndUnconstrainedInterfaces();
Method method = getCreateEventMethod( object );
Object[] parameterValues = new Object[3];
executableValidator.validateParameters( object, method, parameterValues );
fail( "A method defined in two parallel interfaces must have no parameter constraints. Expected exception wasn't thrown." );