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