]> git.lizzy.rs Git - nothing.git/blob - test/main.c
Merge pull request #648 from abridgewater/ebisp-closures
[nothing.git] / test / main.c
1 #include "test.h"
2 #include "tokenizer_suite.h"
3 #include "parser_suite.h"
4 #include "interpreter_suite.h"
5 #include "scope_suite.h"
6
7 TEST_MAIN()
8 {
9     TEST_RUN(tokenizer_suite);
10     TEST_RUN(parser_suite);
11     TEST_RUN(interpreter_suite);
12     TEST_RUN(scope_suite);
13
14     return 0;
15 }