X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fmodel%2FGeometryTest.hpp;fp=tst%2Fmodel%2FGeometryTest.hpp;h=2ee85b1ebffde55c086c6f3ff6abc8b03f88ecac;hb=7d3ab0dcce7abb6d5f766315685424e82478212f;hp=0000000000000000000000000000000000000000;hpb=d71d636af8b6f493abe537088464d1dc6b816c04;p=blank.git diff --git a/tst/model/GeometryTest.hpp b/tst/model/GeometryTest.hpp new file mode 100644 index 0000000..2ee85b1 --- /dev/null +++ b/tst/model/GeometryTest.hpp @@ -0,0 +1,30 @@ +#ifndef BLANK_TEST_MODEL_GEOMETRYTEST_H_ +#define BLANK_TEST_MODEL_GEOMETRYTEST_H_ + +#include + + +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