blob: 4439cdb44fb75e9c1259b4648b812764361d9b0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "../src/engine/fen.c"
int total_test_count = 3;
bool (*tests[3])(void) = {
test_fen_no_passant,
test_fen_passant,
test_starting_position,
};
int max_test_name_size = 17;
char test_names[3][100] = {
"fen_no_passant",
"fen_passant",
"starting_position",
};
|