From: Steve Brokenshire Date: Thu, 9 Jun 2016 20:05:36 +0000 (+0100) Subject: Added menu option for unit testing saving timezone information X-Git-Tag: release-0.02~140 X-Git-Url: http://Server1/repobrowser/?p=xestiacalendar%2F.git;a=commitdiff_plain;h=c4b1b7959bcf3a87e4695c53144186bc317fc8c4 Added menu option for unit testing saving timezone information --- diff --git a/source/tests/xestiacalendar_icaltimezonesave.h b/source/tests/xestiacalendar_icaltimezonesave.h new file mode 100644 index 0000000..1cfd595 --- /dev/null +++ b/source/tests/xestiacalendar_icaltimezonesave.h @@ -0,0 +1,32 @@ +// xestiacalendar_icaltimezonesave.h - Xestia Calendar iCalendar Timezone Component Save Unit Tests +// +// (c) 2016 Xestia Software Development. +// +// This file is part of Xestia Calendar. +// +// Xestia Address Book 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, +// 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. +// +// You should have received a copy of the GNU General Public License along +// with Xestia Calendar. If not, see + +#include "../objects/calendartimezone/CalendarTimezone.h" + +TEST(iCalendarSaveTimezone, SaveTimezoneTests){ + + CalendarTimezoneObject TestTimezone; + + // Load the first test timezone. + + ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestTimezone.LoadFile("iCalendarTimezone-Load1.vcf")); + ASSERT_EQ(CALENDAROBJECTVALID_OK, TestTimezone.ValidBaseObject()); + + + +} \ No newline at end of file diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index 16a1814..58d42c7 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -33,6 +33,7 @@ #include "xestiacalendar_icalfreebusyload.h" #include "xestiacalendar_icalfreebusysave.h" #include "xestiacalendar_icaltimezoneload.h" +#include "xestiacalendar_icaltimezonesave.h" #include "xestiacalendar_caldav.h" enum MenuOpts { @@ -45,6 +46,7 @@ enum MenuOpts { TESTS_ICALLOADFREEBUSY, TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, + TESTS_ICALSAVETIMEZONE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, TESTS_EXTRA, @@ -76,6 +78,7 @@ 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_CALDAV << ". CalDAV Object" << std::endl; std::cout << TESTS_COMMONFUNCTIONS << ". Common Functions" << std::endl; std::cout << TESTS_EXTRA << ". Extra Functions Menu" << std::endl; @@ -239,6 +242,11 @@ 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_CALDAV: printn("Running CalDAV tests..."); ::testing::GTEST_FLAG(filter) = "CalDAV*";