| 27 * |
27 * |
| 28 */ |
28 */ |
| 29 |
29 |
| 30 #include "ucxtest.h" |
30 #include "ucxtest.h" |
| 31 |
31 |
| |
32 CxTestSuite *test_rules_helper_suite(void); |
| |
33 |
| 32 CxTestSuite *test_real_pgn_suite(void); |
34 CxTestSuite *test_real_pgn_suite(void); |
| 33 CxTestSuite *test_rules_helper_suite(void); |
35 CxTestSuite *test_fen_suite(void); |
| 34 |
36 |
| 35 CxTestSuite *test_pawn_suite(void); |
37 CxTestSuite *test_pawn_suite(void); |
| 36 CxTestSuite *test_rook_suite(void); |
38 CxTestSuite *test_rook_suite(void); |
| 37 CxTestSuite *test_knight_suite(void); |
39 CxTestSuite *test_knight_suite(void); |
| 38 CxTestSuite *test_bishop_suite(void); |
40 CxTestSuite *test_bishop_suite(void); |
| 39 CxTestSuite *test_queen_suite(void); |
41 CxTestSuite *test_queen_suite(void); |
| 40 CxTestSuite *test_king_suite(void); |
42 CxTestSuite *test_king_suite(void); |
| 41 |
43 |
| 42 int main(void) { |
44 int main(void) { |
| 43 CxTestSuite *suites[] = { |
45 CxTestSuite *suites[] = { |
| |
46 test_rules_helper_suite(), |
| 44 test_real_pgn_suite(), |
47 test_real_pgn_suite(), |
| 45 test_rules_helper_suite(), |
48 test_fen_suite(), |
| 46 test_pawn_suite(), |
49 test_pawn_suite(), |
| 47 test_rook_suite(), |
50 test_rook_suite(), |
| 48 test_knight_suite(), |
51 test_knight_suite(), |
| 49 test_bishop_suite(), |
52 test_bishop_suite(), |
| 50 test_queen_suite(), |
53 test_queen_suite(), |