}
@SuppressWarnings("deprecation")
public void agenda() {
if (!entity.entityIsAlive(null))
fifo.add(new WaitResultTest(entity.getTimeNow(), "Entity null is dead", entity));
if (entity.entityIsAlive(e1.getEntity()))
fifo.add(new WaitResultTest(entity.getTimeNow(), "EntityOne alive", entity));
entity.testWaitForTime(3.0);
if (!entity.entityIsAlive(e1.getEntity()))
fifo.add(new WaitResultTest(entity.getTimeNow(), "EntityOne not alive", entity));
try {
e1.actionMethod();
fifo.add(new WaitResultTest(entity.getTimeNow(), "Failure: exception not thrown", entity));
} catch (IllegalStateException e) {
fifo.add(new WaitResultTest(entity.getTimeNow(), "Success: exception thrown", entity));
}
}