blob: 7f9148e5fc2e6fdd7bdbff881d51c09706c94dd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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);
}
|