aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-05-06 03:43:19 +0100
committerdx <aryadevchavali1@gmail.com>2020-05-06 03:43:19 +0100
commit3aef989bf97185e4c01084dc6b99aeafcca215ff (patch)
tree3d6c83d45cb1ab8a5dcc21f288fe8f206135c384
parentc57d3886e05fbea9a45b18b069f112ecbae42151 (diff)
downloadmdhtml-3aef989bf97185e4c01084dc6b99aeafcca215ff.tar.gz
mdhtml-3aef989bf97185e4c01084dc6b99aeafcca215ff.tar.bz2
mdhtml-3aef989bf97185e4c01084dc6b99aeafcca215ff.zip
+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.
-rw-r--r--Converter/includes/test.h8
-rw-r--r--Converter/src/test.c9
2 files changed, 17 insertions, 0 deletions
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 <assert.h>
+#include <stdio.h>
+#include <string.h>
+
+void test_header_depths(void)
+{
+
+}