Remove debugging traces, now that PGN load/save works.
[tagua/yd.git] / tests / hlvariants / chessmovetest.h
blobc5ced7f1181e71523d05d637520e457a4a1654d4
1 #ifndef CHESSMOVETEST_H
2 #define CHESSMOVETEST_H
4 #include <cppunit/extensions/HelperMacros.h>
5 #include <cppunit/TestCaller.h>
6 #include <cppunit/TestResult.h>
7 #include <cppunit/TestFixture.h>
8 #include <cppunit/TestAssert.h>
10 // forward decl
11 namespace HLVariant {
12 namespace Chess {
13 class Move;
17 typedef HLVariant::Chess::Move ChessMove;
19 class ChessMoveTest : public CppUnit::TestFixture {
20 CPPUNIT_TEST_SUITE(ChessMoveTest);
21 CPPUNIT_TEST(test_capture_square);
22 CPPUNIT_TEST(test_en_passant_trigger);
23 CPPUNIT_TEST(test_promotion);
24 CPPUNIT_TEST_SUITE_END();
25 public:
26 void setUp();
27 void tearDown();
29 void test_capture_square();
30 void test_en_passant_trigger();
31 void test_promotion();
34 #endif // CHESSMOVETEST_H