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