Added borderCoord.
[tagua.git] / tests / hlvariants / chesswrappedtest.h
blob1840227160b6400d97418432e0e1d001103e567b
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(test_get_move1);
19 CPPUNIT_TEST(test_fools_mate);
20 CPPUNIT_TEST(test_check);
21 CPPUNIT_TEST_SUITE_END();
22 private:
23 PositionPtr m_pos;
24 public:
25 void setUp();
26 void tearDown();
28 void test_setup();
29 void test_move();
30 void test_movable();
31 void test_san1();
32 void test_get_move1();
33 void test_fools_mate();
34 void test_check();
37 #endif // CHESSWRAPPEDTEST_H