blob: b5d400480fe3237e881237e5b2392b40e23bc5f9 [file] [log] [blame]
Wludzik, Jozefe2362792020-10-27 17:23:55 +01001#pragma once
2
3#include "interfaces/json_storage.hpp"
4
5#include <gmock/gmock.h>
6
7namespace interfaces
8{
9
10inline void PrintTo(const JsonStorage::FilePath& o, std::ostream* os)
11{
12 (*os) << static_cast<std::filesystem::path>(o);
13}
14inline void PrintTo(const JsonStorage::DirectoryPath& o, std::ostream* os)
15{
16 (*os) << static_cast<std::filesystem::path>(o);
17}
18
19} // namespace interfaces