X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=35e4a6a1da394e2f3feae9115bebe51fda03aa3b;hb=63a6d3fc5d5af7b72b0b89522bce13aabfa82407;hp=646db15239c020d66372b284c2e9b978723e7683;hpb=5a9fda05e1769510eaf31b0bc4f031c17800daf9;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index 646db15..35e4a6a 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -28,7 +28,9 @@ #include "xestiacalendar_icaleventsave.h" #include "xestiacalendar_icaltaskload.h" #include "xestiacalendar_icaljournalload.h" +#include "xestiacalendar_icaljournalsave.h" #include "xestiacalendar_icalfreebusyload.h" +#include "xestiacalendar_icalfreebusysave.h" #include "xestiacalendar_icaltimezoneload.h" #include "xestiacalendar_caldav.h" @@ -36,8 +38,10 @@ enum MenuOpts { TESTS_ICALLOADEVENT = 1, TESTS_ICALSAVEEVENT, TESTS_ICALLOADTODO, + TESTS_ICALSAVEJOURNAL, TESTS_ICALLOADJOURNAL, TESTS_ICALLOADFREEBUSY, + TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, @@ -65,7 +69,9 @@ void printmenu(){ 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_ICALSAVEJOURNAL << ". iCalendar Journal Component Save" << 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; @@ -205,13 +211,23 @@ int main(int argc, char* argv[]){ ::testing::GTEST_FLAG(filter) = "iCalendarJournal*"; TestResult = RUN_ALL_TESTS(); break; + case TESTS_ICALSAVEJOURNAL: + printn("Running iCalendar Journal Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveJournal*"; + TestResult = RUN_ALL_TESTS(); + break; case TESTS_ICALLOADFREEBUSY: printn("Running iCalendar Free Busy Component tests..."); ::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;