From b1ded109567f20ccd6bbe547618149abde7cd5b2 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 13 Feb 2020 03:47:21 +0100 Subject: Added mem/test_* boilerplate --- test/src/mem/test_ft_calloc.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/src/mem/test_ft_calloc.c (limited to 'test/src/mem/test_ft_calloc.c') diff --git a/test/src/mem/test_ft_calloc.c b/test/src/mem/test_ft_calloc.c new file mode 100644 index 0000000..1497728 --- /dev/null +++ b/test/src/mem/test_ft_calloc.c @@ -0,0 +1,14 @@ +#include "libft_test.h" + +TEST_GROUP(ft_calloc); + +TEST_SETUP(ft_calloc) +{} + +TEST_TEAR_DOWN(ft_calloc) +{} + +TEST(ft_calloc, basic) +{ + +} -- cgit