*/
@Test
public void starImportedFactAlsoDeclaredInDRL() throws Exception {
AgendaEventListener ael = mock(AgendaEventListener.class);
ksession.addEventListener(ael);
ksession.insert(new TestEvent("event 1"));
ksession.fireAllRules();
// the rule should have fired exactly once
verify(ael, times(1)).afterMatchFired(any(AfterMatchFiredEvent.class));
}