]> git.localhorst.tv Git - blank.git/blobdiff - tst/model/GeometryTest.hpp
more unit tests for Packet
[blank.git] / tst / model / GeometryTest.hpp
index 2ee85b1ebffde55c086c6f3ff6abc8b03f88ecac..7ba2d2d4019c16f4c1e47a9bd6b50577f1eaab95 100644 (file)
@@ -12,7 +12,8 @@ class GeometryTest
 
 CPPUNIT_TEST_SUITE(GeometryTest);
 
-CPPUNIT_TEST(testRayAABBIntersection);
+CPPUNIT_TEST(testRayBoxIntersection);
+CPPUNIT_TEST(testBoxBoxIntersection);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -20,7 +21,8 @@ public:
        void setUp();
        void tearDown();
 
-       void testRayAABBIntersection();
+       void testRayBoxIntersection();
+       void testBoxBoxIntersection();
 
 };