X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fworld%2FPlanetTest.hpp;fp=tst%2Fworld%2FPlanetTest.hpp;h=1fc4b1552e72e9c3ae81d9d2443b59a800246c7e;hb=3b0a4ba59825b2d6a47e9d997736742edf55240c;hp=0000000000000000000000000000000000000000;hpb=25ea209f2732dfe643844f303d304dc3c6a5f4f0;p=blobs.git diff --git a/tst/world/PlanetTest.hpp b/tst/world/PlanetTest.hpp new file mode 100644 index 0000000..1fc4b15 --- /dev/null +++ b/tst/world/PlanetTest.hpp @@ -0,0 +1,32 @@ +#ifndef BLOBS_TEST_WORLD_PLANETTEST_HPP_ +#define BLOBS_TEST_WORLD_PLANETTEST_HPP_ + +#include + + +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