CppEphem
test_CENamespace.h
Go to the documentation of this file.
1 /***************************************************************************
2  * test_CENamespace.h: CppEphem *
3  * ----------------------------------------------------------------------- *
4  * Copyright © 2019 JCardenzana *
5  * ----------------------------------------------------------------------- *
6  * *
7  * This program is free software: you can redistribute it and/or modify *
8  * it under the terms of the GNU General Public License as published by *
9  * the Free Software Foundation, either version 3 of the License, or *
10  * (at your option) any later version. *
11  * *
12  * This program is distributed in the hope that it will be useful, *
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15  * GNU General Public License for more details. *
16  * *
17  * You should have received a copy of the GNU General Public License *
18  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19  * *
20  ***************************************************************************/
21 
22 #ifndef test_CENamespace_h
23 #define test_CENamespace_h
24 
25 #include "CENamespace.h"
26 #include "CETestSuite.h"
27 
28 class test_CENamespace : public CETestSuite {
29 public:
31  virtual ~test_CENamespace();
32 
33  virtual bool runtests();
34 
35  /****** METHODS ******/
36 
37  virtual bool test_SeaLevelVals(void);
38  virtual bool test_Conversions(void);
39  virtual bool test_Corrections(void);
40  virtual bool test_StrOpt(void);
41 
42 };
43 
44 #endif /* test_CENamespace_h */
test_CENamespace
Definition: test_CENamespace.h:27
CENamespace.h
test_CENamespace::test_StrOpt
virtual bool test_StrOpt(void)
Tests the string operations.
Definition: test_CENamespace.cpp:191
test_CENamespace::test_CENamespace
test_CENamespace()
Default constructor.
Definition: test_CENamespace.cpp:35
test_CENamespace::test_Corrections
virtual bool test_Corrections(void)
Tests basic coordinate conversion correction values.
Definition: test_CENamespace.cpp:131
test_CENamespace::test_Conversions
virtual bool test_Conversions(void)
Tests return values for basic unit conversion constants.
Definition: test_CENamespace.cpp:91
test_CENamespace::~test_CENamespace
virtual ~test_CENamespace()
Destructor.
Definition: test_CENamespace.cpp:43
test_CENamespace::runtests
virtual bool runtests()
Run tests.
Definition: test_CENamespace.cpp:52
test_CENamespace::test_SeaLevelVals
virtual bool test_SeaLevelVals(void)
Tests return values for temperature at sea level.
Definition: test_CENamespace.cpp:70