diff options
Diffstat (limited to 'test/src/runner')
| -rw-r--r-- | test/src/runner/test_runner_str.c | 10 | ||||
| -rw-r--r-- | test/src/runner/test_runner_vec.c | 7 |
2 files changed, 16 insertions, 1 deletions
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); +} diff --git a/test/src/runner/test_runner_vec.c b/test/src/runner/test_runner_vec.c index c393bfa..5a57def 100644 --- a/test/src/runner/test_runner_vec.c +++ b/test/src/runner/test_runner_vec.c @@ -6,7 +6,7 @@ /* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/01 19:55:53 by charles #+# #+# */ -/* Updated: 2020/04/04 19:36:41 by charles ### ########.fr */ +/* Updated: 2020/04/04 23:26:54 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -57,3 +57,8 @@ TEST_GROUP_RUNNER(ft_vecsort) { RUN_TEST_CASE(ft_vecsort, basic); } + +TEST_GROUP_RUNNER(ft_vecpush_safe) +{ + RUN_TEST_CASE(ft_vecpush_safe, basic); +} |
