The test_suite/helpers directory has been renamed to test_suite/FGTestApi/ and all the fgtest namespaces renamed to FGTestApi. The helper functions are now also placed into either a setUp or tearDown namespace depending on their function. And a new FGTestApi::PrivateAccessor::FDM namespace has been created for holding friend classes used to access private or protected variables or functions from solely within the test suite.
17 lines
310 B
C++
17 lines
310 B
C++
#ifndef _FG_PRIVATE_ACCESSOR_FDM_HXX
|
|
#define _FG_PRIVATE_ACCESSOR_FDM_HXX
|
|
|
|
namespace FGTestApi {
|
|
namespace PrivateAccessor {
|
|
namespace FDM {
|
|
|
|
class Accessor
|
|
{
|
|
public:
|
|
};
|
|
|
|
} // End of namespace FDM.
|
|
} // End of namespace PrivateAccessor.
|
|
} // End of namespace FGTestApi.
|
|
|
|
#endif // _FG_PRIVATE_ACCESSOR_FDM_HXX
|