diff options
Diffstat (limited to 'tests.c')
-rw-r--r-- | tests.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,13 +1,21 @@ #include "minitest.h" +#include "config-parser.c" #include "intmath.c" int tests_run = 0; int tests_failed = 0; +void intmath_tests(); +void main_tests(); + int main() { printf("[INFO] Running tests...\n\n"); + printf("[INFO] Running main-tests...\n"); + parsing_tests(); + printf("\n"); + printf("[INFO] Running intmath-tests...\n"); intmath_tests(); printf("\n"); |