2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-27 12:31:50 +00:00
Files
OpenAssetTools/test/SystemTests/SystemTestsPaths.cpp
2025-12-23 15:40:52 +01:00

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