diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-06 03:43:19 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-06 03:43:19 +0100 |
commit | 3aef989bf97185e4c01084dc6b99aeafcca215ff (patch) | |
tree | 3d6c83d45cb1ab8a5dcc21f288fe8f206135c384 /Converter/includes/test.h | |
parent | c57d3886e05fbea9a45b18b069f112ecbae42151 (diff) | |
download | mdhtml-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.
Diffstat (limited to 'Converter/includes/test.h')
-rw-r--r-- | Converter/includes/test.h | 8 |
1 files changed, 8 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_ |