From: Steve Brokenshire Date: Mon, 22 Feb 2016 00:56:27 +0000 (+0000) Subject: Added common functions for the unit testing application X-Git-Tag: release-0.02~348 X-Git-Url: http://Server1/repobrowser/?p=xestiacalendar%2F.git;a=commitdiff_plain;h=cd689032d169aa5946b2550dd76710107a851c5c Added common functions for the unit testing application --- diff --git a/source/tests/xestiacalendar_testcommon.cpp b/source/tests/xestiacalendar_testcommon.cpp new file mode 100644 index 0000000..7e96498 --- /dev/null +++ b/source/tests/xestiacalendar_testcommon.cpp @@ -0,0 +1,9 @@ +#include "xestiacalendar_testcommon.h" + +CalDAVConnectionData ProcessConnectionDataFile(string DataFilename){ + + CalDAVConnectionData ConnData; + + return ConnData; + +} \ No newline at end of file diff --git a/source/tests/xestiacalendar_testcommon.h b/source/tests/xestiacalendar_testcommon.h new file mode 100644 index 0000000..1e23eb4 --- /dev/null +++ b/source/tests/xestiacalendar_testcommon.h @@ -0,0 +1,11 @@ +#ifndef __TESTS_XESTIACALENDAR_TESTCOMMON_H__ +#define __TESTS_XESTIACALENDAR_TESTCOMMON_H__ + +#include "../objects/CalDAV/CalDAV.h" +#include + +using namespace std; + +CalDAVConnectionData ProcessConnectionDataFile(string DataFilename); + +#endif \ No newline at end of file