langatator/tests/test.c

11 lines
168 B
C
Raw Normal View History

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