--- /dev/null
+// 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 <http://www.gnu.org/licenses/>
+
+#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
#include "xestiacalendar_icalfreebusyload.h"
#include "xestiacalendar_icalfreebusysave.h"
#include "xestiacalendar_icaltimezoneload.h"
+#include "xestiacalendar_icaltimezonesave.h"
#include "xestiacalendar_caldav.h"
enum MenuOpts {
TESTS_ICALLOADFREEBUSY,
TESTS_ICALSAVEFREEBUSY,
TESTS_ICALLOADTIMEZONE,
+ TESTS_ICALSAVETIMEZONE,
TESTS_CALDAV,
TESTS_COMMONFUNCTIONS,
TESTS_EXTRA,
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;
::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*";