public void shouldBeAbleToFireExceptionEventOnFailingObserver() throws Exception
{
ManagerImpl manager = ManagerBuilder.from()
.extensions(ExtensionWithExceptionObserver.class, ExtensionObservingException.class).create();
manager.fire(new String("should cause exception"));
Assert.assertTrue(manager.getExtension(ExtensionObservingException.class).methodOneWasCalled);
}
@Test(expected = IOException.class)