]> git.localhorst.tv Git - blobs.git/blob - tst/math/IntersectTest.hpp
test ray/sphere intersect
[blobs.git] / tst / math / IntersectTest.hpp
1 #ifndef BLOBS_TEST_MATH_INTERSECTTEST_HPP_
2 #define BLOBS_TEST_MATH_INTERSECTTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blobs {
8 namespace math {
9 namespace test {
10
11 class IntersectTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(IntersectTest);
15
16 CPPUNIT_TEST(testRayBoxIntersection);
17 CPPUNIT_TEST(testBoxBoxIntersection);
18 CPPUNIT_TEST(testRaySphereIntersection);
19
20 CPPUNIT_TEST_SUITE_END();
21
22 public:
23         void setUp();
24         void tearDown();
25
26         void testRayBoxIntersection();
27         void testBoxBoxIntersection();
28         void testRaySphereIntersection();
29
30 };
31
32 }
33 }
34 }
35
36 #endif