]> git.lizzy.rs Git - nothing.git/blob - test/main.c
(#427) Fix svg2rects failure on newlines in labels
[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 #include "builtins_suite.h"
7
8 TEST_MAIN()
9 {
10     TEST_RUN(tokenizer_suite);
11     TEST_RUN(parser_suite);
12     TEST_RUN(interpreter_suite);
13     TEST_RUN(scope_suite);
14     TEST_RUN(builtins_suite);
15
16     return 0;
17 }