]> git.localhorst.tv Git - blobs.git/blobdiff - tst/world/PlanetTest.hpp
little better seek ai
[blobs.git] / tst / world / PlanetTest.hpp
diff --git a/tst/world/PlanetTest.hpp b/tst/world/PlanetTest.hpp
new file mode 100644 (file)
index 0000000..1fc4b15
--- /dev/null
@@ -0,0 +1,32 @@
+#ifndef BLOBS_TEST_WORLD_PLANETTEST_HPP_
+#define BLOBS_TEST_WORLD_PLANETTEST_HPP_
+
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace blobs {
+namespace world {
+namespace test {
+
+class PlanetTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(PlanetTest);
+
+CPPUNIT_TEST(testPositionConversion);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testPositionConversion();
+
+};
+
+}
+}
+}
+
+#endif