1
0
Fork 0
flightgear/test_suite/FGTestApi/globals.hxx

27 lines
413 B
C++
Raw Normal View History

#ifndef FG_TEST_HELPERS_HXX
#define FG_TEST_HELPERS_HXX
#include <string>
#include <simgear/misc/sg_path.hxx>
namespace FGTestApi {
namespace setUp {
void initTestGlobals(const std::string& testName);
SGPath fgdataPath();
} // End of namespace setUp.
namespace tearDown {
void shutdownTestGlobals();
} // End of namespace tearDown.
} // End of namespace FGTestApi.
#endif // of FG_TEST_HELPERS_HXX