| 25 | using State = utils::IntervalSwitchState; |
| 26 | |
| 27 | struct expected { |
| 28 | expected(State state, bool switched) :state{state}, switched{switched} {} |
| 29 | |
| 30 | State state; |
| 31 | bool switched; |
| 32 | }; |
| 33 | |
| 34 | template<typename IntervalSwitchReturn> |
| 35 | bool operator==(const IntervalSwitchReturn& lhs, const expected& c) { |
no outgoing calls
no test coverage detected