aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/opendeco_test.c
diff options
context:
space:
mode:
authorGravatar Tim Segers <tsegers@pm.me>2022-10-10 18:08:23 +0200
committerGravatar Tim Segers <tsegers@pm.me>2022-10-10 18:26:26 +0200
commit2337828095920b8debdb0f8e0337a9d6aad6b55c (patch)
tree5f2427f6cceed61423d17dccabe626f65e695e04 /test/opendeco_test.c
parent5a13248060e51ac11436e9c0aa9f1694998caf54 (diff)
downloadopendeco-2337828095920b8debdb0f8e0337a9d6aad6b55c.tar.gz
Add minunit.h with some trivial tests
Diffstat (limited to 'test/opendeco_test.c')
-rw-r--r--test/opendeco_test.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/opendeco_test.c b/test/opendeco_test.c
new file mode 100644
index 0000000..55761ae
--- /dev/null
+++ b/test/opendeco_test.c
@@ -0,0 +1,11 @@
+#include "minunit.h"
+
+MU_TEST_SUITE(testsuite_deco);
+
+int main(int argc, const char *argv[])
+{
+ MU_RUN_SUITE(testsuite_deco, NULL);
+ MU_REPORT();
+
+ return MU_EXIT_CODE;
+}