9e122eaf81
Compile a useful subset of FG as a shared library, and add two basic uses of this to exercise some Flightplan / RoutePath / navaid functions. The test framework can/will be expanded incrementally from here, this is just a starting point.
15 lines
252 B
C++
15 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
|