@SpecAssertion(section = "4.5.5", id = "b"),
@SpecAssertion(section = "4.5.5", id = "e")
})
public void testParameterIsCascadingInInterfaceMethodAndSuperClassMethodCausesException()
throws Exception {
Object object = new ImplementationOfCascadingInterfaceExtendingUncascadingSuperClass();
Method method = getCreateEventMethod( object );
Object[] parameterValues = new Object[3];
executableValidator.validateParameters( object, method, parameterValues );
fail( "A method defined in an interface and a superclass not implementing this interface must have no parameters marked as cascaded. Expected exception wasn't thrown." );