summaryrefslogtreecommitdiff
path: root/generated/tests.c
blob: a9f778879a3037458f837299c47eb872f2a46806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "../src/engine/fen.c"
#include "../src/engine/moves/king.c"

int total_test_count = 5;
bool (*tests[5])(void) = {
  test_fen_no_passant,
  test_fen_passant,
  test_starting_position,
  test_white_king_corners,
  test_black_king_corners,
};

int max_test_name_size = 18;
char test_names[5][100] = {
  "fen_no_passant",
  "fen_passant",
  "starting_position",
  "white_king_corners",
  "black_king_corners",
};