]> git.localhorst.tv Git - blank.git/blob - tst/world/BlockTest.hpp
467d2600e9540cf537a1dc3709a0104ddd8d719c
[blank.git] / tst / world / BlockTest.hpp
1 #ifndef BLANK_TEST_WORLD_BLOCKTEST_H_
2 #define BLANK_TEST_WORLD_BLOCKTEST_H_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blank {
8 namespace test {
9
10 class BlockTest
11 : public CppUnit::TestFixture {
12
13 CPPUNIT_TEST_SUITE(BlockTest);
14
15 CPPUNIT_TEST(testFaceOpposite);
16 CPPUNIT_TEST(testFaceAxis);
17 CPPUNIT_TEST(testFaceNormal);
18 CPPUNIT_TEST(testNormalFace);
19
20 CPPUNIT_TEST(testFaceSet);
21
22 CPPUNIT_TEST(testDefaultBlock);
23
24 CPPUNIT_TEST_SUITE_END();
25
26 public:
27         void setUp();
28         void tearDown();
29
30         void testFaceOpposite();
31         void testFaceAxis();
32         void testFaceNormal();
33         void testNormalFace();
34
35         void testFaceSet();
36
37         void testDefaultBlock();
38
39 };
40
41 }
42 }
43
44 #endif