blob: 6136b2298f02b28d0c4e16f43729dd2094d42b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "../src/engine/moves/king.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",
};
|