#include "xestiacalendar_icaltaskload.h"
#include "xestiacalendar_icaljournalload.h"
#include "xestiacalendar_icalfreebusyload.h"
+#include "xestiacalendar_icalfreebusysave.h"
#include "xestiacalendar_icaltimezoneload.h"
#include "xestiacalendar_caldav.h"
TESTS_ICALLOADTODO,
TESTS_ICALLOADJOURNAL,
TESTS_ICALLOADFREEBUSY,
+ TESTS_ICALSAVEFREEBUSY,
TESTS_ICALLOADTIMEZONE,
TESTS_CALDAV,
TESTS_COMMONFUNCTIONS,
std::cout << TESTS_ICALLOADTODO << ". iCalendar Task Component Load" << std::endl;
std::cout << TESTS_ICALLOADJOURNAL << ". iCalendar Journal Component Load" << std::endl;
std::cout << TESTS_ICALLOADFREEBUSY << ". iCalendar FreeBusy Component Load" << std::endl;
+ std::cout << TESTS_ICALSAVEFREEBUSY << ". iCalendar FreeBusy Component Save" << std::endl;
std::cout << TESTS_ICALLOADTIMEZONE << ". iCalendar Timezone Component Load" << std::endl;
std::cout << TESTS_CALDAV << ". CalDAV Object" << std::endl;
std::cout << TESTS_COMMONFUNCTIONS << ". Common Functions" << std::endl;
::testing::GTEST_FLAG(filter) = "iCalendarFreeBusy*";
TestResult = RUN_ALL_TESTS();
break;
+ case TESTS_ICALSAVEFREEBUSY:
+ printn("Running iCalendar Free Busy Component Save tests...");
+ ::testing::GTEST_FLAG(filter) = "iCalendarSaveFreeBusy*";
+ TestResult = RUN_ALL_TESTS();
+ break;
case TESTS_ICALLOADTIMEZONE:
printn("Running iCalendar Timezone Component tests...");
::testing::GTEST_FLAG(filter) = "iCalendarTimezone*";