]> git.localhorst.tv Git - tacos.git/blob - tst/world/FloorTest.hpp
ray/floor intersection experiments
[tacos.git] / tst / world / FloorTest.hpp
1 #ifndef TACOS_TEST_WORLD_FLOORTEST_HPP_
2 #define TACOS_TEST_WORLD_FLOORTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace tacos {
8 namespace test {
9
10 class FloorTest
11 : public CppUnit::TestFixture {
12
13 CPPUNIT_TEST_SUITE(FloorTest);
14
15 CPPUNIT_TEST(testIntersection);
16
17 CPPUNIT_TEST_SUITE_END();
18
19 public:
20         void setUp();
21         void tearDown();
22
23         void testIntersection();
24
25 };
26
27 }
28 }
29
30 #endif