public void testLuggageNotCheckedInOnTime() throws Exception{
final StatefulKnowledgeSession ksession = this.createKSession();
WorkingMemoryEntryPoint meetingsEP = ksession.getWorkingMemoryEntryPoint("meetings");
WorkingMemoryEntryPoint incomingCallsEP = ksession.getWorkingMemoryEntryPoint("incoming-calls");
Employee john = new Employee("John", "Terry");
Employee paul = new Employee("Paul", "Stewart");
Employee peter = new Employee("Peter", "Corning");
Employee michael = new Employee("Michael", "Williams");
//a 2 hours meeting is created
Meeting meeting = new Meeting("Some important meeting",2*60*60*1000);
meeting.addParticipant(john);
meeting.addParticipant(paul);