2017-03-21 20:43:42 +00:00
|
|
|
#ifndef FG_TEST_HELPERS_HXX
|
|
|
|
#define FG_TEST_HELPERS_HXX
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <simgear/misc/sg_path.hxx>
|
|
|
|
|
|
|
|
namespace fgtest
|
|
|
|
{
|
|
|
|
|
|
|
|
void initTestGlobals(const std::string& testName);
|
|
|
|
|
|
|
|
void shutdownTestGlobals();
|
2017-03-27 14:37:54 +00:00
|
|
|
|
|
|
|
SGPath fgdataPath();
|
2017-03-21 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // of FG_TEST_HELPERS_HXX
|