0f96032487
The setting of the SG log levels and developer mode has been removed as this clashes with the output control set by the test suite main() function.
17 lines
278 B
C++
17 lines
278 B
C++
#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();
|
|
|
|
SGPath fgdataPath();
|
|
}
|
|
|
|
#endif // of FG_TEST_HELPERS_HXX
|