]> git.localhorst.tv Git - blobs.git/blob - tst/world/PlanetTest.hpp
little better seek ai
[blobs.git] / tst / world / PlanetTest.hpp
1 #ifndef BLOBS_TEST_WORLD_PLANETTEST_HPP_
2 #define BLOBS_TEST_WORLD_PLANETTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blobs {
8 namespace world {
9 namespace test {
10
11 class PlanetTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(PlanetTest);
15
16 CPPUNIT_TEST(testPositionConversion);
17
18 CPPUNIT_TEST_SUITE_END();
19
20 public:
21         void setUp();
22         void tearDown();
23
24         void testPositionConversion();
25
26 };
27
28 }
29 }
30 }
31
32 #endif