summaryrefslogtreecommitdiff
path: root/experimental/tectonics/tests.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-01-25 22:59:44 -0600
committersanine <sanine.not@pm.me>2022-01-25 22:59:44 -0600
commit008cf63a05d7be6ed165747ec5e735e002de3b2d (patch)
tree024d04980a4f0cd6faa426939cfb60e9a3d7b6a3 /experimental/tectonics/tests.c
parentec20b587362d76d6c48ecc1a5c1e65f1bb9293da (diff)
add quadtree and basic world model
Diffstat (limited to 'experimental/tectonics/tests.c')
-rw-r--r--experimental/tectonics/tests.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/experimental/tectonics/tests.c b/experimental/tectonics/tests.c
new file mode 100644
index 0000000..5e00525
--- /dev/null
+++ b/experimental/tectonics/tests.c
@@ -0,0 +1,11 @@
+#include "tests.h"
+#include "minunit.h"
+
+int tests_run = 0;
+int tests_failed = 0;
+
+int main() {
+ RUN_TESTS();
+ mu_tests_finished();
+ return tests_failed;
+}