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