diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-04-04 23:36:19 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-04-04 23:36:19 +0200 |
| commit | 65cf641e9533b190db870d0cc46f2f852239ebf6 (patch) | |
| tree | df2002170b96d189493e54cb484390fb2af2a2d1 /test/src/main.c | |
| parent | 42316d8393d32bd88fb8e0cba6825185f78dacd0 (diff) | |
| download | libft-65cf641e9533b190db870d0cc46f2f852239ebf6.tar.gz libft-65cf641e9533b190db870d0cc46f2f852239ebf6.tar.bz2 libft-65cf641e9533b190db870d0cc46f2f852239ebf6.zip | |
Added test for ft_strsjoin, ft_strsjoinf, ft_vecpush_safe, Added doc for algo functions, tested functions
Diffstat (limited to 'test/src/main.c')
| -rw-r--r-- | test/src/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/src/main.c b/test/src/main.c index 7bac44b..b8f5cf3 100644 --- a/test/src/main.c +++ b/test/src/main.c @@ -30,6 +30,8 @@ static void run_all_test(void) // str RUN_TEST_GROUP(ft_strlen); RUN_TEST_GROUP(ft_fnmatch); + RUN_TEST_GROUP(ft_strsjoin); + RUN_TEST_GROUP(ft_strsjoinf); // ht RUN_TEST_GROUP(ft_htentry_new); @@ -79,7 +81,9 @@ static void run_all_test(void) RUN_TEST_GROUP(ft_vecpush); RUN_TEST_GROUP(ft_vecremove); RUN_TEST_GROUP(ft_vecinsert); + RUN_TEST_GROUP(ft_vecpush_safe); + // dstr RUN_TEST_GROUP(ft_dstrdestroy); RUN_TEST_GROUP(ft_dstrgrow); RUN_TEST_GROUP(ft_dstrinsert); |
