blob: d883af5dad4a1411d783f9f36d17de830bf56a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "../src/search/king_moves.c"
int total_test_count = 2;
bool (*tests[2])(void) = {
test_empty_board,
test_friendly_pieces,
};
int max_test_name_size = 15;
char test_names[2][100] = {
"empty_board",
"friendly_pieces",
};
|