aboutsummaryrefslogtreecommitdiff
path: root/test/src/runner
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/runner
parentf178a21e2560d9375227dbf6751a54f12e1033b2 (diff)
downloadlibft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.tar.gz
libft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.tar.bz2
libft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.zip
Added ctype tests, ignore htnew tests
Diffstat (limited to 'test/src/runner')
-rw-r--r--test/src/runner/test_runner_ctype.c64
-rw-r--r--test/src/runner/test_runner_ht.c12
2 files changed, 76 insertions, 0 deletions
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 <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* 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 <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* 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)