#pragma once #include 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"; } };