From 92f76e70da98ebf857ba003bd5e14947c497082b Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Sun, 5 Jun 2016 14:01:25 +0100 Subject: [PATCH] Added menu option for unit testing saving Free/Busy information --- source/tests/xestiacalendar_test.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) 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*"; -- 2.39.2