1
0
Fork 0
flightgear/test_suite/FGTestApi/globals.hxx
James Turner e15d67e637 TestPilot helper in the test API
Use this in the GPS tests.
2019-09-18 23:40:36 +01:00

28 lines
457 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);
void runForTime(double t);
namespace tearDown {
void shutdownTestGlobals();
} // End of namespace tearDown.
} // End of namespace FGTestApi.
#endif // of FG_TEST_GLOBALS_HELPERS_HXX