blob: 395f8d177db4a0e0c494bc8527cf9713ce42c3bf [file] [log] [blame]
#pragma once
#include "types/types.hpp"
#include <ostream>
#include <gmock/gmock.h>
namespace utils
{
inline void PrintTo(const LabeledSensorParameters& o, std::ostream* os)
{
using testing::PrintToString;
(*os) << "{ ";
(*os) << utils::tstring::Service::str() << ": "
<< PrintToString(o.at_label<utils::tstring::Service>()) << ", ";
(*os) << utils::tstring::Path::str() << ": "
<< PrintToString(o.at_label<utils::tstring::Path>());
(*os) << " }";
}
} // namespace utils