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/main.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/src/main.c') diff --git a/test/src/main.c b/test/src/main.c index a81bc8f..9ca4fe4 100644 --- a/test/src/main.c +++ b/test/src/main.c @@ -6,6 +6,16 @@ static void run_all_test(void) RUN_TEST_GROUP(ft_htnew); RUN_TEST_GROUP(ft_htget); RUN_TEST_GROUP(ft_htset); + RUN_TEST_GROUP(ft_isalnum); + RUN_TEST_GROUP(ft_isalpha); + RUN_TEST_GROUP(ft_isascii); + RUN_TEST_GROUP(ft_isblank); + RUN_TEST_GROUP(ft_isdigit); + RUN_TEST_GROUP(ft_isprint); + RUN_TEST_GROUP(ft_isspace); + RUN_TEST_GROUP(ft_todigit); + RUN_TEST_GROUP(ft_tolower); + RUN_TEST_GROUP(ft_toupper); } int main(int argc, const char **argv) -- cgit