mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-12-27 12:31:50 +00:00
16 lines
278 B
C++
16 lines
278 B
C++
#include "SystemTestsPaths.h"
|
|
|
|
#include "OatTestPaths.h"
|
|
|
|
#include <filesystem>
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
namespace oat::paths
|
|
{
|
|
std::filesystem::path GetSystemTestsDirectory()
|
|
{
|
|
return GetTestDirectory() / "SystemTests";
|
|
}
|
|
} // namespace oat::paths
|