diff options
Diffstat (limited to 'tests.c')
-rw-r--r-- | tests.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ + +#include "minitest.h" +#include "intmath.c" + +int tests_run = 0; +int tests_failed = 0; + +int main() { + printf("[INFO] Running tests...\n\n"); + + printf("[INFO] Running intmath-tests...\n"); + intmath_tests(); + printf("\n"); + + mt_test_report(); + + return tests_failed != 0; +} |