//I should have one task here, that has been created by the specific procedure started
doGarageTask();
Thread.sleep(3000);
// I can asume that all the procedures are ended, we need to delegate this to the external component
AllProceduresEndedEvent allProceduresEndedEvent = new AllProceduresEndedEvent(null, new ArrayList<String>());
GenericEmergencyProcedureImpl.getInstance().allProceduresEnededNotification(allProceduresEndedEvent);
// We should see the report in the console
Thread.sleep(10000);
}