org.jboss.cdi.tck.tests.extensions.lifecycle.processInjectionTarget.WrappedInjectionTargetTest uses an @ApplicationScoped bean to 'transfer' information. But according to the spec, the Context for @ApplicationScoped beans is only active after AfterDeploymentValidation on. But the Servlet Container might set up Servlet Filters, Listeners etc way before that. Thus sending an event to an @ApplicationScoped bean in ProcessInjectionTarget is very unlikely to ever reach the intended audience. Thus this test is doomed to fail. |