X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=58d42c7dfe2201b550561a9100a511efe133328a;hb=c4b1b7959bcf3a87e4695c53144186bc317fc8c4;hp=16a181493a70beae2dd8f1abaf6bec9a4ab84c7a;hpb=f88d0439b75487b758520f6536da4974f9be3dfa;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index 16a1814..58d42c7 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -33,6 +33,7 @@ #include "xestiacalendar_icalfreebusyload.h" #include "xestiacalendar_icalfreebusysave.h" #include "xestiacalendar_icaltimezoneload.h" +#include "xestiacalendar_icaltimezonesave.h" #include "xestiacalendar_caldav.h" enum MenuOpts { @@ -45,6 +46,7 @@ enum MenuOpts { TESTS_ICALLOADFREEBUSY, TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, + TESTS_ICALSAVETIMEZONE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, TESTS_EXTRA, @@ -76,6 +78,7 @@ void printmenu(){ 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_ICALSAVETIMEZONE << ". iCalendar Timezone Component Save" << std::endl; std::cout << TESTS_CALDAV << ". CalDAV Object" << std::endl; std::cout << TESTS_COMMONFUNCTIONS << ". Common Functions" << std::endl; std::cout << TESTS_EXTRA << ". Extra Functions Menu" << std::endl; @@ -239,6 +242,11 @@ int main(int argc, char* argv[]){ ::testing::GTEST_FLAG(filter) = "iCalendarTimezone*"; TestResult = RUN_ALL_TESTS(); break; + case TESTS_ICALSAVETIMEZONE: + printn("Running iCalendar Timezone Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveTimezone*"; + TestResult = RUN_ALL_TESTS(); + break; case TESTS_CALDAV: printn("Running CalDAV tests..."); ::testing::GTEST_FLAG(filter) = "CalDAV*";