langatator/tests/test.c

16 lines
328 B
C

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