mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-05-03 07:08:01 +03:00
15 lines
249 B
C
15 lines
249 B
C
#include "test.h"
|
|
|
|
#include "test_config.h"
|
|
#include "test_gameflow.h"
|
|
|
|
size_t tests = 0;
|
|
size_t fails = 0;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
test_empty_config();
|
|
test_config_override();
|
|
test_gameflow_equality();
|
|
TEST_RESULTS();
|
|
}
|