blob: b5d400480fe3237e881237e5b2392b40e23bc5f9 [file] [log] [blame]
#pragma once
#include "interfaces/json_storage.hpp"
#include <gmock/gmock.h>
namespace interfaces
{
inline void PrintTo(const JsonStorage::FilePath& o, std::ostream* os)
{
(*os) << static_cast<std::filesystem::path>(o);
}
inline void PrintTo(const JsonStorage::DirectoryPath& o, std::ostream* os)
{
(*os) << static_cast<std::filesystem::path>(o);
}
} // namespace interfaces