Matthieu Bessat
a62dd411aa
feat(Evaluator): add minus sign reducing fix(Evaluator): trim spaces test: add base for unit testing
10 lines
168 B
C
10 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();
|
|
}
|