summaryrefslogtreecommitdiff
path: root/tests/tests-lib.h
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-11-15 10:50:30 -0300
committerEuAndreh <eu@euandre.org>2023-11-15 16:16:30 -0300
commitaf5e7495f3993c52573432cadde12169d5c05e62 (patch)
tree002fc20e6f12eac71c21c6eccc48bf59e7180274 /tests/tests-lib.h
parentsrc/napi-sqlite.c: Add Node-API PoC (diff)
downloadpapod-af5e7495f3993c52573432cadde12169d5c05e62.tar.gz
papod-af5e7495f3993c52573432cadde12169d5c05e62.tar.xz
Add support for multi-file C project
- have dynamic discovered dependencies via `mkdeps.hs`, and also move the listing of JavaScript files to it. - copy over stub C files for setting up the project skeleton.
Diffstat (limited to 'tests/tests-lib.h')
-rw-r--r--tests/tests-lib.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/tests-lib.h b/tests/tests-lib.h
new file mode 100644
index 0000000..a1e67ba
--- /dev/null
+++ b/tests/tests-lib.h
@@ -0,0 +1,15 @@
+#ifndef TESTS_LIB_H
+#define TESTS_LIB_H
+
+#include "../src/config.h"
+
+void
+test_start(const char *const name);
+
+void
+testing(const char *const message);
+
+void
+test_ok(void);
+
+#endif