summaryrefslogtreecommitdiff
path: root/experimental/tectonics/tests.c
blob: 5e005254c01a21bff160043abc31f7b9a72b404b (plain)
1
2
3
4
5
6
7
8
9
10
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;
}