clock.setStartupTime( 1000 );
AgendaEventListener ael = mock( AgendaEventListener.class );
ksession.addEventListener( ael );
StockTickInterface tick1 = new StockTick( 1, "DROO", 50, 0, 3 );
StockTickInterface tick2 = new StockTick( 2, "ACME", 10, 4, 3 );
StockTickInterface tick3 = new StockTick( 3, "ACME", 10, 8, 3 );
StockTickInterface tick4 = new StockTick( 4, "DROO", 50, 12, 5 );
StockTickInterface tick5 = new StockTick( 5, "ACME", 10, 12, 5 );
StockTickInterface tick6 = new StockTick( 6, "ACME", 10, 13, 3 );
StockTickInterface tick7 = new StockTick( 7, "ACME", 10, 13, 5 );
StockTickInterface tick8 = new StockTick( 8, "ACME", 10, 15, 3 );
ksession.insert( tick1 );
ksession.insert( tick2 );
ksession.insert( tick3 );
ksession.insert( tick4 );