]> git.localhorst.tv Git - tacos.git/blobdiff - tst/world/FloorTest.hpp
ray/floor intersection experiments
[tacos.git] / tst / world / FloorTest.hpp
diff --git a/tst/world/FloorTest.hpp b/tst/world/FloorTest.hpp
new file mode 100644 (file)
index 0000000..4fceee2
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef TACOS_TEST_WORLD_FLOORTEST_HPP_
+#define TACOS_TEST_WORLD_FLOORTEST_HPP_
+
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace tacos {
+namespace test {
+
+class FloorTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(FloorTest);
+
+CPPUNIT_TEST(testIntersection);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testIntersection();
+
+};
+
+}
+}
+
+#endif