c7b28a1960
Still needs ILS and GS tests, but starting to be useful already.
26 lines
429 B
C++
26 lines
429 B
C++
#ifndef FG_TEST_GLOBALS_HELPERS_HXX
|
|
#define FG_TEST_GLOBALS_HELPERS_HXX
|
|
|
|
#include <string>
|
|
|
|
class SGGeod;
|
|
|
|
namespace FGTestApi {
|
|
|
|
namespace setUp {
|
|
|
|
void initTestGlobals(const std::string& testName);
|
|
|
|
} // End of namespace setUp.
|
|
|
|
void setPosition(const SGGeod& g);
|
|
|
|
namespace tearDown {
|
|
|
|
void shutdownTestGlobals();
|
|
|
|
} // End of namespace tearDown.
|
|
|
|
} // End of namespace FGTestApi.
|
|
|
|
#endif // of FG_TEST_GLOBALS_HELPERS_HXX
|