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