1*b3e03d2dSMichal Orzel #pragma once
2*b3e03d2dSMichal Orzel 
3*b3e03d2dSMichal Orzel #include "types/trigger_types.hpp"
4*b3e03d2dSMichal Orzel 
5*b3e03d2dSMichal Orzel #include <ostream>
6*b3e03d2dSMichal Orzel 
7*b3e03d2dSMichal Orzel #include <gmock/gmock.h>
8*b3e03d2dSMichal Orzel 
PrintTo(const TriggerAction & action,std::ostream * os)9*b3e03d2dSMichal Orzel inline void PrintTo(const TriggerAction& action, std::ostream* os)
10*b3e03d2dSMichal Orzel {
11*b3e03d2dSMichal Orzel     *os << actionToString(action);
12*b3e03d2dSMichal Orzel }
13