event.generateMatches();
event.flushMatchList();
//Clock counter test
Clock eventDuration = new Clock(ClockType.COUNTER);
eventDuration.start();
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// Timeout occurs
Clock timeout = new Clock(ClockType.TIMEOUT);
timeout.start();
try {
Thread.sleep(65000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block