aboutsummaryrefslogtreecommitdiff
path: root/test/src/mem/test_ft_calloc.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-13 03:47:21 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-13 03:47:21 +0100
commitb1ded109567f20ccd6bbe547618149abde7cd5b2 (patch)
tree12da402183c2f663b25c073b39429c591c1e60b7 /test/src/mem/test_ft_calloc.c
parent8521c9e02b2bcb9f6437a111cba3f395236f8e22 (diff)
downloadlibft-b1ded109567f20ccd6bbe547618149abde7cd5b2.tar.gz
libft-b1ded109567f20ccd6bbe547618149abde7cd5b2.tar.bz2
libft-b1ded109567f20ccd6bbe547618149abde7cd5b2.zip
Added mem/test_* boilerplate
Diffstat (limited to 'test/src/mem/test_ft_calloc.c')
-rw-r--r--test/src/mem/test_ft_calloc.c14
1 files changed, 14 insertions, 0 deletions
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)
+{
+
+}