1
0
Fork 0
flightgear/test_suite/FGTestApi/globals.hxx
Edward d'Auvergne 99a50508a7 TestSuite: Spun out the NavDataCache initialisation code.
Not all tests will require the NavDataCache, so it is no longer set up with the
dummy globals data structure.
2018-07-26 15:52:06 +02:00

23 lines
379 B
C++

#ifndef FG_TEST_GLOBALS_HELPERS_HXX
#define FG_TEST_GLOBALS_HELPERS_HXX
#include <string>
namespace FGTestApi {
namespace setUp {
void initTestGlobals(const std::string& testName);
} // End of namespace setUp.
namespace tearDown {
void shutdownTestGlobals();
} // End of namespace tearDown.
} // End of namespace FGTestApi.
#endif // of FG_TEST_GLOBALS_HELPERS_HXX