]> git.localhorst.tv Git - gong.git/blob - tst/geometry/IntersectionTest.hpp
spheres
[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(testSimpleRayBox);
17 CPPUNIT_TEST(testRayBox);
18 CPPUNIT_TEST(testBoxBox);
19 CPPUNIT_TEST(testSpherePlane);
20 CPPUNIT_TEST(testSphereHalfSpace);
21
22 CPPUNIT_TEST_SUITE_END();
23
24 public:
25         void setUp();
26         void tearDown();
27
28         void testSimpleRayBox();
29         void testRayBox();
30         void testBoxBox();
31         void testSpherePlane();
32         void testSphereHalfSpace();
33
34 };
35
36 }
37 }
38 }
39
40 #endif