Package org.drools.compiler.integrationtests.facts

Examples of org.drools.compiler.integrationtests.facts.TestEvent


     */
    @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));
    }
View Full Code Here

TOP

Related Classes of org.drools.compiler.integrationtests.facts.TestEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.