2018-06-10 13:43:20 +00:00
|
|
|
#ifndef FG_TEST_GLOBALS_HELPERS_HXX
|
|
|
|
#define FG_TEST_GLOBALS_HELPERS_HXX
|
2018-07-16 13:59:21 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2018-10-10 08:26:06 +00:00
|
|
|
class SGGeod;
|
|
|
|
|
2018-07-16 13:59:21 +00:00
|
|
|
namespace FGTestApi {
|
|
|
|
|
|
|
|
namespace setUp {
|
|
|
|
|
|
|
|
void initTestGlobals(const std::string& testName);
|
|
|
|
|
|
|
|
} // End of namespace setUp.
|
|
|
|
|
2018-10-10 08:26:06 +00:00
|
|
|
void setPosition(const SGGeod& g);
|
2018-07-16 13:59:21 +00:00
|
|
|
|
|
|
|
namespace tearDown {
|
|
|
|
|
|
|
|
void shutdownTestGlobals();
|
|
|
|
|
|
|
|
} // End of namespace tearDown.
|
|
|
|
|
|
|
|
} // End of namespace FGTestApi.
|
|
|
|
|
2018-06-10 13:43:20 +00:00
|
|
|
#endif // of FG_TEST_GLOBALS_HELPERS_HXX
|