Michal Orzel | b3e03d2 | 2024-06-28 13:55:47 +0200 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include "types/trigger_types.hpp" | ||||
4 | |||||
5 | #include <ostream> | ||||
6 | |||||
7 | #include <gmock/gmock.h> | ||||
8 | |||||
9 | inline void PrintTo(const TriggerAction& action, std::ostream* os) | ||||
10 | { | ||||
11 | *os << actionToString(action); | ||||
12 | } |