diff options
author | EuAndreh <eu@euandre.org> | 2021-08-21 05:46:01 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-21 05:49:01 -0300 |
commit | 8cdf1afb795cf4f2d6eb01fa6a533d9321adec59 (patch) | |
tree | 22d8eb5f33eed5b7bfe513430002d679bf8460ec /src/tests-lib.h | |
parent | TODOs.md: Add #task-a0634ded-968e-bce5-3fef-8e1c5e3aab35 (diff) | |
download | gistatic-8cdf1afb795cf4f2d6eb01fa6a533d9321adec59.tar.gz gistatic-8cdf1afb795cf4f2d6eb01fa6a533d9321adec59.tar.xz |
src/tests-lib.c: Move testing helper function and share it with other files
Diffstat (limited to 'src/tests-lib.h')
-rw-r--r-- | src/tests-lib.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tests-lib.h b/src/tests-lib.h new file mode 100644 index 0000000..fef72ef --- /dev/null +++ b/src/tests-lib.h @@ -0,0 +1,8 @@ +#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 |