diff options
Diffstat (limited to 'tests/main.c')
-rw-r--r-- | tests/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/main.c b/tests/main.c index 4b1cfd2..3f60a3a 100644 --- a/tests/main.c +++ b/tests/main.c @@ -4,6 +4,8 @@ * License: MIT */ +/* https://libcheck.github.io/check/doc/doxygen/html/check_8h.html */ + #include <check.h> #include "tests.h" @@ -16,9 +18,10 @@ int main() { s = suite_create("All Tests"); suite_add_tcase(s, test_dns()); + suite_add_tcase(s, test_tree()); sr = srunner_create(s); - srunner_run_all(sr,CK_NORMAL); + srunner_run_all(sr,CK_VERBOSE); failed = srunner_ntests_failed(sr); |