]> git.localhorst.tv Git - blobs.git/blob - tst/world/OrbitTest.hpp
basic orbit tests
[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(testDefaultOrbit);
17
18 CPPUNIT_TEST(testSMA);
19 CPPUNIT_TEST(testEcc);
20 CPPUNIT_TEST(testInc);
21 CPPUNIT_TEST(testLngAsc);
22 CPPUNIT_TEST(testArgPe);
23 CPPUNIT_TEST(testMnAn);
24
25 CPPUNIT_TEST_SUITE_END();
26
27 public:
28         void setUp();
29         void tearDown();
30
31         void testDefaultOrbit();
32
33         void testSMA();
34         void testEcc();
35         void testInc();
36         void testLngAsc();
37         void testArgPe();
38         void testMnAn();
39
40 };
41
42 }
43 }
44 }
45
46 #endif