diff options
Diffstat (limited to 'test/src/runner/test_runner_ht.c')
| -rw-r--r-- | test/src/runner/test_runner_ht.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/src/runner/test_runner_ht.c b/test/src/runner/test_runner_ht.c index de20c5b..f25a61a 100644 --- a/test/src/runner/test_runner_ht.c +++ b/test/src/runner/test_runner_ht.c @@ -6,12 +6,17 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/12 22:44:39 by cacharle #+# #+# */ -/* Updated: 2020/02/12 22:47:11 by cacharle ### ########.fr */ +/* Updated: 2020/02/17 05:02:25 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft_test.h" +TEST_GROUP_RUNNER(ft_htcontent_new) +{ + RUN_TEST_CASE(ft_htcontent_new, basic); +} + TEST_GROUP_RUNNER(ft_htnew) { RUN_TEST_CASE(ft_htnew, segfault); @@ -30,5 +35,6 @@ 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, reset); RUN_TEST_CASE(ft_htset, collision); } |
