From 0362f55a094b5ec813d940b66f397abfa13fbe49 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 17 Feb 2020 05:03:15 +0100 Subject: amend me --- test/src/runner/test_runner_ht.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'test/src/runner') 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 +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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); } -- cgit