diff options
author | Tim Segers <tsegers@pm.me> | 2022-10-10 18:08:23 +0200 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2022-10-10 18:26:26 +0200 |
commit | 2337828095920b8debdb0f8e0337a9d6aad6b55c (patch) | |
tree | 5f2427f6cceed61423d17dccabe626f65e695e04 /test/opendeco_test.c | |
parent | 5a13248060e51ac11436e9c0aa9f1694998caf54 (diff) | |
download | opendeco-2337828095920b8debdb0f8e0337a9d6aad6b55c.tar.gz |
Add minunit.h with some trivial tests
Diffstat (limited to 'test/opendeco_test.c')
-rw-r--r-- | test/opendeco_test.c | 11 |
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; +} |