aboutsummaryrefslogtreecommitdiff
path: root/test/src/runner/test_runner_ht.c
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-11 14:53:20 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-10-11 14:53:20 +0200
commit39951f08a2938683d800c677c3a244e9ff8dbe19 (patch)
tree9321278f57c91d070e269fc2d2f95d4f2cb00fdf /test/src/runner/test_runner_ht.c
parent306a69eb9ae88813cf0be0aa3e001481e12220a1 (diff)
downloadlibft-39951f08a2938683d800c677c3a244e9ff8dbe19.tar.gz
libft-39951f08a2938683d800c677c3a244e9ff8dbe19.tar.bz2
libft-39951f08a2938683d800c677c3a244e9ff8dbe19.zip
Removing none c,h files for correction
Diffstat (limited to 'test/src/runner/test_runner_ht.c')
-rw-r--r--test/src/runner/test_runner_ht.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/test/src/runner/test_runner_ht.c b/test/src/runner/test_runner_ht.c
deleted file mode 100644
index e7fbcf3..0000000
--- a/test/src/runner/test_runner_ht.c
+++ /dev/null
@@ -1,51 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* test_runner_ht.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/02/12 22:44:39 by cacharle #+# #+# */
-/* Updated: 2020/04/03 07:11:32 by charles ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libft_test.h"
-
-TEST_GROUP_RUNNER(ft_htentry_new)
-{
- RUN_TEST_CASE(ft_htentry_new, basic);
-}
-
-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);
- RUN_TEST_CASE(ft_htget, basic);
-}
-
-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);
-}
-
-TEST_GROUP_RUNNER(ft_htdelone)
-{
- RUN_TEST_CASE(ft_htdelone, basic);
-}
-
-TEST_GROUP_RUNNER(ft_htdestroy)
-{
- RUN_TEST_CASE(ft_htdestroy, basic);
-}