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