aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-03-18 16:14:12 +0100
committerEugen Wissner <belka@caraus.de>2025-03-18 16:14:12 +0100
commit226dfdbc021e9500e70f667bc3ec6131e3b9694e (patch)
treed40c3d68010e67692a29e25834fcc0b98b49f634 /tests
parent67d798dcb056b815b5439b05bd823a4a46843899 (diff)
downloadkazbek-226dfdbc021e9500e70f667bc3ec6131e3b9694e.tar.gz
Katja: Add test facilities
Diffstat (limited to 'tests')
-rw-r--r--tests/tester.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/tester.cpp b/tests/tester.cpp
new file mode 100644
index 0000000..a464447
--- /dev/null
+++ b/tests/tester.cpp
@@ -0,0 +1,9 @@
+#define BOOST_TEST_MODULE unit tests
+
+#include <boost/test/unit_test.hpp>
+#include "katja/repository.hpp"
+
+BOOST_AUTO_TEST_CASE(construct_valid_database_package)
+{
+ BOOST_TEST(true);
+}