diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-04-05 14:05:43 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-04-05 14:05:43 +0200 |
| commit | 3a2d19df9e509d0b015c786eb02f8315ff0ad91c (patch) | |
| tree | a34390a35e366a46897c1261bb091f20b7fd8b09 /test/src/runner | |
| parent | 944a236443bacf531085b346d06907b24e3739b1 (diff) | |
| download | libft-3a2d19df9e509d0b015c786eb02f8315ff0ad91c.tar.gz libft-3a2d19df9e509d0b015c786eb02f8315ff0ad91c.tar.bz2 libft-3a2d19df9e509d0b015c786eb02f8315ff0ad91c.zip | |
Renamed ft_substr to ft_strsub, Added ft_strsubf, ft_strcat3
Diffstat (limited to 'test/src/runner')
| -rw-r--r-- | test/src/runner/test_runner_str.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/src/runner/test_runner_str.c b/test/src/runner/test_runner_str.c index a6c0da8..8d3b68a 100644 --- a/test/src/runner/test_runner_str.c +++ b/test/src/runner/test_runner_str.c @@ -19,3 +19,13 @@ TEST_GROUP_RUNNER(ft_strsjoinf) { RUN_TEST_CASE(ft_strsjoinf, basic); } + +TEST_GROUP_RUNNER(ft_strsub) +{ + RUN_TEST_CASE(ft_strsub, basic); +} + +TEST_GROUP_RUNNER(ft_strsubf) +{ + RUN_TEST_CASE(ft_strsubf, basic); +} |
