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-statistics.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/test-statistics.cpp (limited to 'tests/test-statistics.cpp') diff --git a/tests/test-statistics.cpp b/tests/test-statistics.cpp new file mode 100644 index 0000000..9ed7d06 --- /dev/null +++ b/tests/test-statistics.cpp @@ -0,0 +1,28 @@ +#include +#include +#include +#include + +#include +#include + +#include +#include + +#include "statistics.h" + +using namespace std::string_literals; + +class StatisticsFixture +{ +public: + StatisticsFixture(){} + ~StatisticsFixture(){} + void setup(){} + void teardown(){} +}; + +BOOST_FIXTURE_TEST_CASE(statistics, StatisticsFixture) +{ +} + -- cgit v1.2.3