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