use of org.xwiki.observation.event.DocumentDeleteEvent in project xwiki-platform by xwiki.
the class LegacyEventDispatcherTest method testLegacyDocumentDeleteEventGetsDispatched.
@Test
public void testLegacyDocumentDeleteEventGetsDispatched() throws Exception {
this.registerListenerWithLegacyEvent(new DocumentDeleteEvent());
this.om.notify(new DocumentDeletedEvent(new DocumentReference("wiki", "space", "name")), null);
// The notification is synchronous, so the following assertion will only be tested
// once all matching event listeners have been notified.
Assert.assertNotNull("Should have been notified by legacy event dispatcher", this.receivedEvent);
Assert.assertEquals("Wrong event filter", "wiki:space.name", ((FilterableEvent) this.receivedEvent).getEventFilter().getFilter());
}
Aggregations