16 lines
252 B
C++
16 lines
252 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();
|
||
|
}
|
||
|
|
||
|
#endif // of FG_TEST_HELPERS_HXX
|