diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-17 05:03:15 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-17 05:03:15 +0100 |
| commit | 0362f55a094b5ec813d940b66f397abfa13fbe49 (patch) | |
| tree | 98283bdff3d1a0bb876fc55fa535d60d4aa2a6a9 /test/src/runner | |
| parent | eb0678367c5cb09b43423f77d6f1c3063fae9a91 (diff) | |
| download | libft-0362f55a094b5ec813d940b66f397abfa13fbe49.tar.gz libft-0362f55a094b5ec813d940b66f397abfa13fbe49.tar.bz2 libft-0362f55a094b5ec813d940b66f397abfa13fbe49.zip | |
amend me
Diffstat (limited to 'test/src/runner')
| -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); } |
