TRX/test/main.c

16 lines
249 B
C
Raw Normal View History

2021-03-07 15:12:48 +01:00
#include "test.h"
2021-03-18 16:14:28 +01:00
2021-03-21 18:06:41 +01:00
#include "test_config.h"
#include "test_gameflow.h"
2021-03-18 16:14:28 +01:00
2021-03-21 18:06:41 +01:00
size_t tests = 0;
size_t fails = 0;
2021-03-07 15:59:00 +01:00
2021-03-07 23:34:28 +01:00
int main(int argc, char *argv[])
2021-03-07 15:12:48 +01:00
{
2021-03-07 15:59:00 +01:00
test_empty_config();
test_config_override();
2021-03-21 18:06:41 +01:00
test_gameflow_equality();
2021-03-07 15:12:48 +01:00
TEST_RESULTS();
}