X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=16a181493a70beae2dd8f1abaf6bec9a4ab84c7a;hb=513a6239422f911603c8c8575a33fd0365744db4;hp=ff2e58c15ec297600c0aba6bbc6f15467107960f;hpb=e70ab9d1e4c0f066e1fc326169865498e259a9c2;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index ff2e58c..16a1814 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -27,7 +27,9 @@ #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" @@ -37,8 +39,9 @@ enum MenuOpts { TESTS_ICALLOADEVENT = 1, TESTS_ICALSAVEEVENT, TESTS_ICALLOADTODO, - TESTS_ICALSAVEJOURNAL, + TESTS_ICALSAVETODO, TESTS_ICALLOADJOURNAL, + TESTS_ICALSAVEJOURNAL, TESTS_ICALLOADFREEBUSY, TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, @@ -67,6 +70,7 @@ 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; @@ -205,6 +209,11 @@ 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*";