diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-04-01 21:21:10 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-04-01 21:21:10 +0200 |
| commit | a1675f56b35f5521a91851bae8ca650706374ae6 (patch) | |
| tree | 73bf00503b27ac4e548ae66bf7789eff4eb8eede /test/src/runner/test_runner_vec.c | |
| parent | 9316f2063255bd4a0abd5c38d4c065969a8980bb (diff) | |
| download | libft-a1675f56b35f5521a91851bae8ca650706374ae6.tar.gz libft-a1675f56b35f5521a91851bae8ca650706374ae6.tar.bz2 libft-a1675f56b35f5521a91851bae8ca650706374ae6.zip | |
Added vector
Diffstat (limited to 'test/src/runner/test_runner_vec.c')
| -rw-r--r-- | test/src/runner/test_runner_vec.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/src/runner/test_runner_vec.c b/test/src/runner/test_runner_vec.c new file mode 100644 index 0000000..af91360 --- /dev/null +++ b/test/src/runner/test_runner_vec.c @@ -0,0 +1,45 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* test_runner_vec.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/04/01 19:55:53 by charles #+# #+# */ +/* Updated: 2020/04/01 19:58:25 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + + +#include "libft_test.h" + +TEST_GROUP_RUNNER(ft_vecdestroy) +{ + RUN_TEST_CASE(ft_vecdestroy, basic); +} + +TEST_GROUP_RUNNER(ft_vecgrow) +{ + RUN_TEST_CASE(ft_vecgrow, basic); +} + +TEST_GROUP_RUNNER(ft_veciter) +{ + RUN_TEST_CASE(ft_veciter, basic); +} + +TEST_GROUP_RUNNER(ft_vecnew) +{ + RUN_TEST_CASE(ft_vecnew, basic); +} + +TEST_GROUP_RUNNER(ft_vecpop) +{ + RUN_TEST_CASE(ft_vecpop, basic); +} + +TEST_GROUP_RUNNER(ft_vecpush) +{ + RUN_TEST_CASE(ft_vecpush, basic); +} + |
