X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=25e2f6df18acdadb4f93e70c6c18993191d9aa22;hb=cba151c4b833a26c63984769f921bab5e755decd;hp=16a181493a70beae2dd8f1abaf6bec9a4ab84c7a;hpb=b198ec55397d493429efbb3c0df19a7c74939c46;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index 16a1814..25e2f6d 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -1,14 +1,14 @@ // xestiacalendar_test.cpp - Xestia Calendar Unit Testing Suite. // -// (c) 2016 Xestia Software Development. +// (c) 2016-2017 Xestia Software Development. // // This file is part of Xestia Calendar. // -// Xestia Address Book is free software: you can redistribute it and/or modify +// Xestia Calendar is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by the // Free Software Foundation, version 3 of the license. // -// Xestia Address Book is distributed in the hope that it will be useful, +// Xestia Calendar is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. @@ -33,6 +33,8 @@ #include "xestiacalendar_icalfreebusyload.h" #include "xestiacalendar_icalfreebusysave.h" #include "xestiacalendar_icaltimezoneload.h" +#include "xestiacalendar_icaltimezonesave.h" +#include "xestiacalendar_calendardatastorage.h" #include "xestiacalendar_caldav.h" enum MenuOpts { @@ -45,6 +47,8 @@ enum MenuOpts { TESTS_ICALLOADFREEBUSY, TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, + TESTS_ICALSAVETIMEZONE, + TESTS_CALENDARDATASTORAGE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, TESTS_EXTRA, @@ -76,6 +80,8 @@ 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_CALENDARDATASTORAGE << ". Calendar Data Storage" << 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 +245,16 @@ 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_CALENDARDATASTORAGE: + printn("Running Calendar Data Storage tests..."); + ::testing::GTEST_FLAG(filter) = "CalendarDataStorage*"; + TestResult = RUN_ALL_TESTS(); + break; case TESTS_CALDAV: printn("Running CalDAV tests..."); ::testing::GTEST_FLAG(filter) = "CalDAV*";