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