From 579a26f5593039ffbbd1a81e45ecf0ef8797cb5d Mon Sep 17 00:00:00 2001 From: nass1pro Date: Tue, 9 Jun 2020 19:48:34 +0200 Subject: add lexer add single quote --- test_mini/libft/test/src/runner/test_runner_str.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test_mini/libft/test/src/runner/test_runner_str.c (limited to 'test_mini/libft/test/src/runner/test_runner_str.c') diff --git a/test_mini/libft/test/src/runner/test_runner_str.c b/test_mini/libft/test/src/runner/test_runner_str.c new file mode 100644 index 0000000..3d829ad --- /dev/null +++ b/test_mini/libft/test/src/runner/test_runner_str.c @@ -0,0 +1,6 @@ +#include "libft_test.h" + +TEST_GROUP_RUNNER(ft_strlen) +{ + RUN_TEST_CASE(ft_strlen, basic); +} -- cgit