aboutsummaryrefslogtreecommitdiff
path: root/test/src/ctype/test_ft_isalpha.c
blob: 9846985366aa2ec3bffa8f3c664093dcc9020fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "libft_test.h"

TEST_GROUP(ft_isalpha);

TEST_SETUP(ft_isalpha)
{}

TEST_TEAR_DOWN(ft_isalpha)
{}

TEST(ft_isalpha, base)
{
	for (int i = 0; i <= UCHAR_MAX; i++)
		TEST_ASSERT_EQUAL(!!isalpha(i), !!ft_isalpha(i));
}