]> git.localhorst.tv Git - blank.git/blobdiff - tst/model/GeometryTest.hpp
fix ray/obb intersection test
[blank.git] / tst / model / GeometryTest.hpp
diff --git a/tst/model/GeometryTest.hpp b/tst/model/GeometryTest.hpp
new file mode 100644 (file)
index 0000000..2ee85b1
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef BLANK_TEST_MODEL_GEOMETRYTEST_H_
+#define BLANK_TEST_MODEL_GEOMETRYTEST_H_
+
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace blank {
+namespace test {
+
+class GeometryTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(GeometryTest);
+
+CPPUNIT_TEST(testRayAABBIntersection);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testRayAABBIntersection();
+
+};
+
+}
+}
+
+#endif