From 14adc6a1d769e22958496d570b7f25b68cc86969 Mon Sep 17 00:00:00 2001 From: benj Date: Fri, 16 Jun 2017 01:20:02 -0700 Subject: add unity testing fmwk and simple hash fn demonstration --- test/main.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/main.c (limited to 'test/main.c') 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(); +} -- cgit v1.2.3