]> git.localhorst.tv Git - gong.git/blob - tst/geometry/IntersectionTest.hpp
code, assets, and other stuff stolen from blank
[gong.git] / tst / geometry / IntersectionTest.hpp
1 #ifndef GONG_TEST_GEOMETRY_INTERSECTIONTEST_H_
2 #define GONG_TEST_GEOMETRY_INTERSECTIONTEST_H_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace gong {
8 namespace geometry {
9 namespace test {
10
11 class IntersectionTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(IntersectionTest);
15
16 CPPUNIT_TEST(testSimpleRayBoxIntersection);
17 CPPUNIT_TEST(testRayBoxIntersection);
18 CPPUNIT_TEST(testBoxBoxIntersection);
19
20 CPPUNIT_TEST_SUITE_END();
21
22 public:
23         void setUp();
24         void tearDown();
25
26         void testSimpleRayBoxIntersection();
27         void testRayBoxIntersection();
28         void testBoxBoxIntersection();
29
30 };
31
32 }
33 }
34 }
35
36 #endif