summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--project2/sql/unittests/testCore.cpp17
-rw-r--r--project2/sql/unittests/testCore.h21
2 files changed, 0 insertions, 38 deletions
diff --git a/project2/sql/unittests/testCore.cpp b/project2/sql/unittests/testCore.cpp
deleted file mode 100644
index 440d676..0000000
--- a/project2/sql/unittests/testCore.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "testCore.h"
-#include <testOptionsSource.h>
-#include <definedDirs.h>
-
-TestCore::TestCore() :
- testInt(43),
- testDouble(3.14),
- testString("Some C String"),
- testBool(false),
- testDateTime(boost::posix_time::from_time_t(1430530593)),
- testInterval(boost::posix_time::time_duration(1, 2, 3))
-{
- TestOptionsSource::LoadTestOptions({
- { "common.datasourceRoot", (RootDir / "datasources").string() },
- });
-}
-
diff --git a/project2/sql/unittests/testCore.h b/project2/sql/unittests/testCore.h
deleted file mode 100644
index 0a667d6..0000000
--- a/project2/sql/unittests/testCore.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef PROJECT2_SQL_UNITTEST_CORE
-#define PROJECT2_SQL_UNITTEST_CORE
-
-#include <commonObjects.h>
-#include <variableType.h>
-#include <appInstance.h>
-
-class TestCore : public CommonObjects, AppInstance {
- public:
- TestCore();
-
- int testInt;
- double testDouble;
- std::string testString;
- bool testBool;
- boost::posix_time::ptime testDateTime;
- boost::posix_time::time_duration testInterval;
-};
-
-#endif
-