]> git.localhorst.tv Git - blobs.git/blob - tst/math/IntersectTest.hpp
13ac1341e9a67d4b070224367b9786a9783cbc87
[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
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22         void setUp();
23         void tearDown();
24
25         void testRayBoxIntersection();
26         void testBoxBoxIntersection();
27
28 };
29
30 }
31 }
32 }
33
34 #endif