aboutsummaryrefslogtreecommitdiff
path: root/test/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/main.c')
-rw-r--r--test/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/main.c b/test/main.c
new file mode 100644
index 0000000..5df855f
--- /dev/null
+++ b/test/main.c
@@ -0,0 +1,13 @@
+#include "./test_runner.h"
+#include "unity.h"
+
+void setUp(void) {}
+void tearDown(void) {}
+
+int main(void) {
+ UNITY_BEGIN();
+
+ test_runner_algo_hash();
+
+ return UNITY_END();
+}