diff options
author | EuAndreh <eu@euandre.org> | 2021-09-01 11:03:49 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-09-01 11:07:11 -0300 |
commit | 7eef4f04d9fd1fc8ecc38392ce1adb1c44899adc (patch) | |
tree | 7366fac128a49fb2b128090ca6b69f147ebfe583 /src/tests-lib.h | |
parent | tests/lib.sh: Update (diff) | |
download | remembering-7eef4f04d9fd1fc8ecc38392ce1adb1c44899adc.tar.gz remembering-7eef4f04d9fd1fc8ecc38392ce1adb1c44899adc.tar.xz |
Refactor C files, split logerr and tests-lib
Diffstat (limited to 'src/tests-lib.h')
-rw-r--r-- | src/tests-lib.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tests-lib.h b/src/tests-lib.h new file mode 100644 index 0000000..1ceab27 --- /dev/null +++ b/src/tests-lib.h @@ -0,0 +1,13 @@ +#ifndef GISTATIC_TESTS_LIB_H +#define GISTATIC_TESTS_LIB_H + +void +test_start(const char *const name); + +void +testing(const char *const message); + +void +test_ok(void); + +#endif |