aboutsummaryrefslogtreecommitdiff
path: root/test/src/main.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-31 10:44:30 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-02 22:12:42 +0100
commitac0559db82bfef3b7ca3d976b1d7700ed2c1c1fc (patch)
tree214d344c714bdf5b53d651dbd11fec9e0db283cb /test/src/main.c
parent9db52bc5ef545a3fa9973002e9a28a2ece68d029 (diff)
downloadlibft-ac0559db82bfef3b7ca3d976b1d7700ed2c1c1fc.tar.gz
libft-ac0559db82bfef3b7ca3d976b1d7700ed2c1c1fc.tar.bz2
libft-ac0559db82bfef3b7ca3d976b1d7700ed2c1c1fc.zip
hash table unit testing, norming
Diffstat (limited to 'test/src/main.c')
-rw-r--r--test/src/main.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/src/main.c b/test/src/main.c
new file mode 100644
index 0000000..a81bc8f
--- /dev/null
+++ b/test/src/main.c
@@ -0,0 +1,14 @@
+#include "libft_test.h"
+
+static void run_all_test(void)
+{
+ RUN_TEST_GROUP(ft_strlen);
+ RUN_TEST_GROUP(ft_htnew);
+ RUN_TEST_GROUP(ft_htget);
+ RUN_TEST_GROUP(ft_htset);
+}
+
+int main(int argc, const char **argv)
+{
+ return UnityMain(argc, argv, run_all_test);
+}