From: Steve Brokenshire Date: Sun, 5 Jun 2016 13:01:25 +0000 (+0100) Subject: Added menu option for unit testing saving Free/Busy information X-Git-Tag: release-0.02~212 X-Git-Url: http://Server1/repobrowser/?p=xestiacalendar%2F.git;a=commitdiff_plain;h=92f76e70da98ebf857ba003bd5e14947c497082b Added menu option for unit testing saving Free/Busy information --- diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index 32903b2..c6a602f 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -29,6 +29,7 @@ #include "xestiacalendar_icaltaskload.h" #include "xestiacalendar_icaljournalload.h" #include "xestiacalendar_icalfreebusyload.h" +#include "xestiacalendar_icalfreebusysave.h" #include "xestiacalendar_icaltimezoneload.h" #include "xestiacalendar_caldav.h" @@ -38,6 +39,7 @@ enum MenuOpts { TESTS_ICALLOADTODO, TESTS_ICALLOADJOURNAL, TESTS_ICALLOADFREEBUSY, + TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, @@ -66,6 +68,7 @@ void printmenu(){ 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; @@ -210,6 +213,11 @@ int main(int argc, char* argv[]){ ::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*";