assertTrue(fired.isEmpty());
//marshall, then unmarshall session
readWrite(knowledgeBase, ksession, config);
//the activations should fire after 10 seconds
assertTrue(fired.isEmpty());
scheduler.advanceTime(12, TimeUnit.SECONDS);
assertFalse(fired.isEmpty());
}
@Test