stuff-from-scratch/test/test_utils/TestUtils.h
2023-12-21 09:18:44 +00:00

29 lines
612 B
C++

#pragma once
//#include "TestDataLocations.h"
#include <filesystem>
using Path = std::filesystem::path;
class TestUtils
{
public:
static Path getTestOutputDir(const String& testFileName = {})
{
if (!testFileName.empty())
{
const auto name = Path(testFileName).filename().stem();
return std::filesystem::current_path() / "test_output" / name;
}
else
{
return std::filesystem::current_path() / "test_output";
}
}
static Path getTestDataDir()
{
return TestDataLocations::getTestDataDir();
}
};