62 lines
1.7 KiB
C
62 lines
1.7 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* test_utils.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/12/02 22:12:42 by achubuko #+# #+# */
|
|
/* Updated: 2023/12/03 18:44:35 by achubuko ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#include "unity.h"
|
|
#include "ft_utils.h"
|
|
#include "string.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_ft_str_is_numeric_num(void)
|
|
{
|
|
TEST_ASSERT_EQUAL_INT(1, ft_str_is_numeric("42"));
|
|
}
|
|
|
|
void test_ft_str_is_numeric_nonnum(void)
|
|
{
|
|
TEST_ASSERT_EQUAL_INT(0, ft_str_is_numeric("asd"));
|
|
}
|
|
|
|
void test_ft_str_is_numeric_neg(void)
|
|
{
|
|
TEST_ASSERT_EQUAL_INT(-1, ft_str_is_numeric("-42"));
|
|
}
|
|
|
|
void test_ft_strlen(void)
|
|
{
|
|
char *f;
|
|
|
|
f = "foobar baz\0test";
|
|
TEST_ASSERT_EQUAL_INT(strlen(f), ft_strlen(f));
|
|
}
|
|
|
|
void test_ft_atoui32_42(void)
|
|
{
|
|
TEST_ASSERT_EQUAL_UINT32(42, ft_atoui32("42"));
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
UNITY_BEGIN();
|
|
RUN_TEST(test_ft_strlen);
|
|
RUN_TEST(test_ft_str_is_numeric_num);
|
|
RUN_TEST(test_ft_str_is_numeric_nonnum);
|
|
RUN_TEST(test_ft_str_is_numeric_neg);
|
|
RUN_TEST(test_ft_atoui32_42);
|
|
return (UNITY_END());
|
|
}
|