From 65cf641e9533b190db870d0cc46f2f852239ebf6 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 4 Apr 2020 23:36:19 +0200 Subject: Added test for ft_strsjoin, ft_strsjoinf, ft_vecpush_safe, Added doc for algo functions, tested functions --- test/src/runner/test_runner_str.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/src/runner/test_runner_str.c') diff --git a/test/src/runner/test_runner_str.c b/test/src/runner/test_runner_str.c index a299786..a6c0da8 100644 --- a/test/src/runner/test_runner_str.c +++ b/test/src/runner/test_runner_str.c @@ -9,3 +9,13 @@ TEST_GROUP_RUNNER(ft_fnmatch) { RUN_TEST_CASE(ft_fnmatch, basic); } + +TEST_GROUP_RUNNER(ft_strsjoin) +{ + RUN_TEST_CASE(ft_strsjoin, basic); +} + +TEST_GROUP_RUNNER(ft_strsjoinf) +{ + RUN_TEST_CASE(ft_strsjoinf, basic); +} -- cgit