diff options
Diffstat (limited to 'test/src/runner/test_runner_ht.c')
| -rw-r--r-- | test/src/runner/test_runner_ht.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/src/runner/test_runner_ht.c b/test/src/runner/test_runner_ht.c new file mode 100644 index 0000000..d8718af --- /dev/null +++ b/test/src/runner/test_runner_ht.c @@ -0,0 +1,22 @@ +#include "libft_test.h" + +TEST_GROUP_RUNNER(ft_htnew) +{ + RUN_TEST_CASE(ft_htnew, segfault); + RUN_TEST_CASE(ft_htnew, error_null); + RUN_TEST_CASE(ft_htnew, happy_path); +} + +TEST_GROUP_RUNNER(ft_htget) +{ + RUN_TEST_CASE(ft_htget, segfault); + RUN_TEST_CASE(ft_htget, error_null); +} + +TEST_GROUP_RUNNER(ft_htset) +{ + RUN_TEST_CASE(ft_htset, segfault); + RUN_TEST_CASE(ft_htset, error_null); + RUN_TEST_CASE(ft_htset, happy_path); + RUN_TEST_CASE(ft_htset, collision); +} |
