From 455fcf0bb13baa18eac12d265ebdb743cb8815f3 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Thu, 5 Jan 2023 14:32:48 +0100 Subject: Added tests (WIP) --- tests/test-config.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/test-config.cpp (limited to 'tests/test-config.cpp') diff --git a/tests/test-config.cpp b/tests/test-config.cpp new file mode 100644 index 0000000..ddba9c9 --- /dev/null +++ b/tests/test-config.cpp @@ -0,0 +1,28 @@ +#include +#include +#include +#include + +#include +#include + +#include +#include + +#include "config.h" + +using namespace std::string_literals; + +class ConfigFixture +{ +public: + ConfigFixture(){} + ~ConfigFixture(){} + void setup(){} + void teardown(){} +}; + +BOOST_FIXTURE_TEST_CASE(config, ConfigFixture) +{ +} + -- cgit v1.2.3