xref: /openbmc/telemetry/tests/src/helpers/types/object_path_helpers.hpp (revision 1cdd7e4f89c75de7ec95ea545306e96ddf5a8a2b)
1 #pragma once
2 #include <sdbusplus/message.hpp>
3 
4 #include <gmock/gmock.h>
5 
6 namespace sdbusplus::message::details
7 {
PrintTo(const string_path_wrapper & path,std::ostream * os)8 inline void PrintTo(const string_path_wrapper& path, std::ostream* os)
9 {
10     *os << path.str;
11 }
12 } // namespace sdbusplus::message::details
13