"first" + i + ".last" + i + "@webbase-design.de", "Etc/GMT+1");
}
Long language_id = 1L;
Long roomType = 1L;
Appointment a = appointmentLogic.getAppointment(appointmentName,
appointmentLocation, appointmentDescription,
start, end, isDaily, isWeekly,
isMonthly, isYearly, categoryId, remind, mmClient,
roomType, language_id, false, "", -1, users_id);
a = appointmentDao.update(a, users_id);
Thread.sleep(3000);
appointmentLogic.doScheduledMeetingReminder();
Thread.sleep(3000);
assertTrue("Saved appointment should have valid id: " + a.getId(), a.getId() != null && a.getId() > 0);
}