" not StockTick( company == \"DROO\" )\n"+
"then\n"+
"end";
KieHelper helper = new KieHelper();
helper.addContent( drl, ResourceType.DRL );
KieSession ksession = helper.build( EventProcessingOption.STREAM ).newKieSession();
assertEquals("FactCount should be 0[1]", 0, ksession.getFactCount());
for ( int j = 0; j < 100; j++ ) {
ksession.insert(new StockTick(0, "DROO", 1.00));