Added borderCoord.
[tagua.git] / tests / hlvariants / chesspiecetest.h
blobd88848c6a0ed6a0263fcb81ddadb5019e6122c75
1 #ifndef CHESSPIECETEST_H
2 #define CHESSPIECETEST_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 namespace HLVariant { namespace Chess { class Piece; } }
12 class ChessPieceTest : public CppUnit::TestFixture {
13 CPPUNIT_TEST_SUITE(ChessPieceTest);
14 CPPUNIT_TEST(test_basic);
15 CPPUNIT_TEST(test_names);
16 CPPUNIT_TEST(test_compare);
17 CPPUNIT_TEST_SUITE_END();
18 public:
19 void setUp();
20 void tearDown();
22 void test_basic();
23 void test_names();
24 void test_compare();
27 #endif // CHESSPIECETEST_H