aboutsummaryrefslogtreecommitdiff
path: root/test/src/main.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-12 23:14:11 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-12 23:36:42 +0100
commite6f53e82b0f8ae1cff3749ea3476c2074c325d7b (patch)
tree8fb26b636a6959f036d74c7ad9c28e2e2290495d /test/src/main.c
parentf178a21e2560d9375227dbf6751a54f12e1033b2 (diff)
downloadlibft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.tar.gz
libft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.tar.bz2
libft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.zip
Added ctype tests, ignore htnew tests
Diffstat (limited to 'test/src/main.c')
-rw-r--r--test/src/main.c10
1 files changed, 10 insertions, 0 deletions
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)