From e6f53e82b0f8ae1cff3749ea3476c2074c325d7b Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 12 Feb 2020 23:14:11 +0100 Subject: Added ctype tests, ignore htnew tests --- test/src/runner/test_runner_ctype.c | 64 +++++++++++++++++++++++++++++++++++++ test/src/runner/test_runner_ht.c | 12 +++++++ 2 files changed, 76 insertions(+) create mode 100644 test/src/runner/test_runner_ctype.c (limited to 'test/src/runner') diff --git a/test/src/runner/test_runner_ctype.c b/test/src/runner/test_runner_ctype.c new file mode 100644 index 0000000..7f9148e --- /dev/null +++ b/test/src/runner/test_runner_ctype.c @@ -0,0 +1,64 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* test_runner_ctype.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/12 22:44:43 by cacharle #+# #+# */ +/* Updated: 2020/02/12 23:13:02 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "libft_test.h" + +TEST_GROUP_RUNNER(ft_isalnum) +{ + RUN_TEST_CASE(ft_isalnum, base); +} + +TEST_GROUP_RUNNER(ft_isalpha) +{ + RUN_TEST_CASE(ft_isalpha, base); +} + +TEST_GROUP_RUNNER(ft_isascii) +{ + RUN_TEST_CASE(ft_isascii, base); +} + +TEST_GROUP_RUNNER(ft_isblank) +{ + RUN_TEST_CASE(ft_isblank, base); +} + +TEST_GROUP_RUNNER(ft_isdigit) +{ + RUN_TEST_CASE(ft_isdigit, base); +} + +TEST_GROUP_RUNNER(ft_isprint) +{ + RUN_TEST_CASE(ft_isprint, base); +} + +TEST_GROUP_RUNNER(ft_isspace) +{ + RUN_TEST_CASE(ft_isspace, base); +} + +TEST_GROUP_RUNNER(ft_todigit) +{ + RUN_TEST_CASE(ft_todigit, base); +} + +TEST_GROUP_RUNNER(ft_tolower) +{ + RUN_TEST_CASE(ft_tolower, base); +} + +TEST_GROUP_RUNNER(ft_toupper) +{ + RUN_TEST_CASE(ft_toupper, base); +} + diff --git a/test/src/runner/test_runner_ht.c b/test/src/runner/test_runner_ht.c index d8718af..de20c5b 100644 --- a/test/src/runner/test_runner_ht.c +++ b/test/src/runner/test_runner_ht.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* test_runner_ht.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/12 22:44:39 by cacharle #+# #+# */ +/* Updated: 2020/02/12 22:47:11 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include "libft_test.h" TEST_GROUP_RUNNER(ft_htnew) -- cgit