1
0
Fork 0
libfort/tests/test.c

27 lines
912 B
C
Raw Normal View History

2018-01-01 09:26:34 +01:00
#include "tests.h"
#include <stdio.h>
2018-01-01 09:26:34 +01:00
struct test_case test_suit [] = {
{"test_vector_basic", test_vector_basic},
2018-03-19 21:07:18 +01:00
{"test_string_buffer", test_string_buffer},
{"test_table_sizes", test_table_sizes},
{"test_table_geometry", test_table_geometry},
{"test_table_basic", test_table_basic},
2018-03-19 21:07:18 +01:00
{"test_table_border_style", test_table_border_style},
{"test_table_options", test_table_options},
};
2018-01-01 09:26:34 +01:00
int main(void) {
int n_tests = sizeof(test_suit) / sizeof(test_suit[0]);
fprintf(stderr, "[==========] Running %d test(s).\n", n_tests);
int i;
for (i = 0; i < n_tests; ++i) {
fprintf(stderr, "[ RUN ] %s\n", test_suit[i].name);
2018-03-19 21:07:18 +01:00
test_suit[i].test();
fprintf(stderr, "[ OK ] %s\n", test_suit[i].name);
}
fprintf(stderr, "[==========] %d test(s) run.\n", n_tests);
fprintf(stderr, "[ PASSED ] %d test(s).\n", n_tests);
return 0;
2018-01-01 09:26:34 +01:00
}