Added a simple SAN test.
[tagua/yd.git] / tests / hlvariants / chesswrappedtest.h
blob9ab82f3cbe29e680865d2b4c1e55a94cde9a7f09
1 #ifndef CHESSWRAPPEDTEST_H
2 #define CHESSWRAPPEDTEST_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 #include "fwd.h"
12 class ChessWrappedTest : public CppUnit::TestFixture {
13 CPPUNIT_TEST_SUITE(ChessWrappedTest);
14 CPPUNIT_TEST(test_setup);
15 CPPUNIT_TEST(test_move);
16 CPPUNIT_TEST(test_movable);
17 CPPUNIT_TEST(test_san1);
18 CPPUNIT_TEST_SUITE_END();
19 private:
20 PositionPtr m_pos;
21 public:
22 void setUp();
23 void tearDown();
25 void test_setup();
26 void test_move();
27 void test_movable();
28 void test_san1();
31 #endif // CHESSWRAPPEDTEST_H