//the luggage's location should be FRONT-DESK
assertEquals(Luggage.Location.FRONT_DESK, luggage.getLocation());
//2 minutes later, the luggage is checked-in
clock.advanceTime(2, TimeUnit.MINUTES);
CheckInEvent checkInEvent = new CheckInEvent(luggage.getCode());
checkInEventsEP.insert(checkInEvent);
ksession.fireAllRules();
//No alerts
assertEquals(0, alertSystem.getAlertCount());