From 39951f08a2938683d800c677c3a244e9ff8dbe19 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 11 Oct 2020 14:53:20 +0200 Subject: Removing none c,h files for correction --- test/src/runner/test_runner_vec.c | 64 --------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 test/src/runner/test_runner_vec.c (limited to 'test/src/runner/test_runner_vec.c') diff --git a/test/src/runner/test_runner_vec.c b/test/src/runner/test_runner_vec.c deleted file mode 100644 index 5a57def..0000000 --- a/test/src/runner/test_runner_vec.c +++ /dev/null @@ -1,64 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* test_runner_vec.c :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: charles +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2020/04/01 19:55:53 by charles #+# #+# */ -/* Updated: 2020/04/04 23:26:54 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); -} - -TEST_GROUP_RUNNER(ft_vecremove) -{ - RUN_TEST_CASE(ft_vecremove, basic); -} - -TEST_GROUP_RUNNER(ft_vecinsert) -{ - RUN_TEST_CASE(ft_vecinsert, basic); -} - -TEST_GROUP_RUNNER(ft_vecsort) -{ - RUN_TEST_CASE(ft_vecsort, basic); -} - -TEST_GROUP_RUNNER(ft_vecpush_safe) -{ - RUN_TEST_CASE(ft_vecpush_safe, basic); -} -- cgit