stuff-from-scratch/test/test_utils/TestUtils.h
2022-12-01 10:52:48 +00:00

19 lines
322 B
C++

#pragma once
#include <filesystem>
using Path = std::filesystem::path;
class TestUtils
{
public:
static Path getTestOutputDir()
{
return std::filesystem::current_path() / "test_output";
}
static Path getTestDataDir()
{
return std::filesystem::current_path() / "test_data";
}
};