MCPcopy Create free account
hub / github.com/boost-ext/ut / runner

Class runner

example/cfg/runner.cpp:14–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13namespace cfg {
14class 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
33template <>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected