| 12 | |
| 13 | namespace cfg { |
| 14 | class runner { |
| 15 | public: |
| 16 | template <class... Ts> |
| 17 | auto on(ut::events::test<Ts...> test) { |
| 18 | test(); |
| 19 | } |
| 20 | template <class... Ts> |
| 21 | auto on(ut::events::skip<Ts...>) {} |
| 22 | template <class TExpr> |
| 23 | auto on(ut::events::assertion<TExpr>) -> bool { |
| 24 | return true; |
| 25 | } |
| 26 | auto on(ut::events::fatal_assertion) {} |
| 27 | |
| 28 | template <class TMsg> |
| 29 | auto on(ut::events::log<TMsg>) {} |
| 30 | }; |
| 31 | } // namespace cfg |
| 32 | |
| 33 | template <> |
nothing calls this directly
no outgoing calls
no test coverage detected