From 3aef989bf97185e4c01084dc6b99aeafcca215ff Mon Sep 17 00:00:00 2001 From: dx Date: Wed, 6 May 2020 03:43:19 +0100 Subject: +testing system Very elementary, doesn't use some massive framework, should just use asserts and C-lang constructs. Currently one method is present in the header, test_header_depths. --- Converter/includes/test.h | 8 ++++++++ Converter/src/test.c | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 Converter/includes/test.h create mode 100644 Converter/src/test.c (limited to 'Converter') diff --git a/Converter/includes/test.h b/Converter/includes/test.h new file mode 100644 index 0000000..372e6e8 --- /dev/null +++ b/Converter/includes/test.h @@ -0,0 +1,8 @@ +#ifndef __TEST_H_ +#define __TEST_H_ + +// Test methods to run + +void test_header_depths(void); + +#endif // __TEST_H_ diff --git a/Converter/src/test.c b/Converter/src/test.c new file mode 100644 index 0000000..ff42fb3 --- /dev/null +++ b/Converter/src/test.c @@ -0,0 +1,9 @@ +#include "../includes/compiler.h" +#include +#include +#include + +void test_header_depths(void) +{ + +} -- cgit v1.2.3-13-gbd6f