blob: 440d676aa6ff98db6d471c385417ed89bd62049a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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() },
});
}
|