diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-12 23:14:11 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-12 23:36:42 +0100 |
| commit | e6f53e82b0f8ae1cff3749ea3476c2074c325d7b (patch) | |
| tree | 8fb26b636a6959f036d74c7ad9c28e2e2290495d /test/src/main.c | |
| parent | f178a21e2560d9375227dbf6751a54f12e1033b2 (diff) | |
| download | libft-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.c | 10 |
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) |
