diff options
author | sanine <sanine.not@pm.me> | 2022-01-25 22:59:44 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-01-25 22:59:44 -0600 |
commit | 008cf63a05d7be6ed165747ec5e735e002de3b2d (patch) | |
tree | 024d04980a4f0cd6faa426939cfb60e9a3d7b6a3 /experimental/tectonics/tests.c | |
parent | ec20b587362d76d6c48ecc1a5c1e65f1bb9293da (diff) |
add quadtree and basic world model
Diffstat (limited to 'experimental/tectonics/tests.c')
-rw-r--r-- | experimental/tectonics/tests.c | 11 |
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; +} |