langatator/tests/test.c

12 lines
232 B
C

#include "./test_utils.h"
#include "./test_evaluation.h"
#include "./test_line_processing.h"
#include <stdio.h>
int main()
{
printf("== UNIT TESTS == \n");
test_utils();
test_evaluation();
test_line_processing();
}