2022-05-21 16:38:26 +00:00
|
|
|
#include "../src/config.h"
|
|
|
|
#include "../src/utils.h"
|
2022-04-30 14:16:37 +00:00
|
|
|
#include "./test_utils.h"
|
|
|
|
#include "./test_evaluation.h"
|
2022-05-06 09:49:09 +00:00
|
|
|
#include "./test_line_processing.h"
|
2022-05-15 16:46:16 +00:00
|
|
|
#include "./test_stack.h"
|
|
|
|
#include "./test_var_store.h"
|
2022-04-30 14:16:37 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2022-05-21 16:38:26 +00:00
|
|
|
int var1 = 0x34;
|
|
|
|
printf_wrap("== UNIT TESTS == \n");
|
2022-05-15 19:16:34 +00:00
|
|
|
test_utils();
|
2022-05-21 16:38:26 +00:00
|
|
|
printf_wrap("ça commence à faire chier jpp\n");
|
2022-05-15 16:46:16 +00:00
|
|
|
test_var_store();
|
|
|
|
test_stack();
|
2022-04-30 14:16:37 +00:00
|
|
|
test_evaluation();
|
2022-05-06 09:49:09 +00:00
|
|
|
test_line_processing();
|
2022-04-30 14:16:37 +00:00
|
|
|
}
|