X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=16a181493a70beae2dd8f1abaf6bec9a4ab84c7a;hb=513a6239422f911603c8c8575a33fd0365744db4;hp=646db15239c020d66372b284c2e9b978723e7683;hpb=5a9fda05e1769510eaf31b0bc4f031c17800daf9;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index 646db15..16a1814 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -27,8 +27,11 @@ #include "xestiacalendar_icaleventload.h" #include "xestiacalendar_icaleventsave.h" #include "xestiacalendar_icaltaskload.h" +#include "xestiacalendar_icaltasksave.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 +39,11 @@ enum MenuOpts { TESTS_ICALLOADEVENT = 1, TESTS_ICALSAVEEVENT, TESTS_ICALLOADTODO, + TESTS_ICALSAVETODO, TESTS_ICALLOADJOURNAL, + TESTS_ICALSAVEJOURNAL, TESTS_ICALLOADFREEBUSY, + TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, @@ -64,8 +70,11 @@ void printmenu(){ 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_ICALSAVETODO << ". iCalendar Task Component Save" << 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; @@ -200,18 +209,33 @@ int main(int argc, char* argv[]){ ::testing::GTEST_FLAG(filter) = "iCalendarTask*"; TestResult = RUN_ALL_TESTS(); break; + case TESTS_ICALSAVETODO: + printn("Running iCalendar Task Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveTask*"; + TestResult = RUN_ALL_TESTS(); + break; case TESTS_ICALLOADJOURNAL: printn("Running iCalendar Journal Component tests..."); ::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;