X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=c6a602f9a58621510b1a19f4fc8469feddf2d99e;hb=92f76e70da98ebf857ba003bd5e14947c497082b;hp=e3e2bed1999458a4825c8b2c2d4dc285305ff46f;hpb=6e26afc98c0656bbd2ffed756b826d986b97c0bf;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index e3e2bed..c6a602f 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -25,17 +25,21 @@ #include "xestiacalendar_commonfunctions.h" #include "xestiacalendar_populate.h" #include "xestiacalendar_icaleventload.h" +#include "xestiacalendar_icaleventsave.h" #include "xestiacalendar_icaltaskload.h" #include "xestiacalendar_icaljournalload.h" #include "xestiacalendar_icalfreebusyload.h" +#include "xestiacalendar_icalfreebusysave.h" #include "xestiacalendar_icaltimezoneload.h" #include "xestiacalendar_caldav.h" enum MenuOpts { TESTS_ICALLOADEVENT = 1, + TESTS_ICALSAVEEVENT, TESTS_ICALLOADTODO, TESTS_ICALLOADJOURNAL, TESTS_ICALLOADFREEBUSY, + TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, @@ -60,9 +64,11 @@ void printmenu(){ std::cout << "Select an option:" << std::endl << std::endl; std::cout << TESTS_ICALLOADEVENT << ". iCalendar Event Component Load" << std::endl; + std::cout << TESTS_ICALSAVEEVENT << ". iCalendar Event Component Save" << std::endl; 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; @@ -187,6 +193,11 @@ int main(int argc, char* argv[]){ ::testing::GTEST_FLAG(filter) = "iCalendarEvent*"; TestResult = RUN_ALL_TESTS(); break; + case TESTS_ICALSAVEEVENT: + printn("Running iCalendar Event Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveEvent*"; + TestResult = RUN_ALL_TESTS(); + break; case TESTS_ICALLOADTODO: printn("Running iCalendar Task Component tests..."); ::testing::GTEST_FLAG(filter) = "iCalendarTask*"; @@ -202,8 +213,13 @@ 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 Free Busy Component tests..."); + printn("Running iCalendar Timezone Component tests..."); ::testing::GTEST_FLAG(filter) = "iCalendarTimezone*"; TestResult = RUN_ALL_TESTS(); break;