From 0b6026ae2a96c4757688af51d927261536cc2873 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 14 Jun 2021 20:59:28 +0200 Subject: tests --- tests/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/main.c') 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 #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); -- cgit v1.2.3