| 267 | } |
| 268 | |
| 269 | void Framework::log_test_start(const TestInfo &info) |
| 270 | { |
| 271 | if (_log_level >= LogLevel::TESTS) |
| 272 | { |
| 273 | func_on_all_printers([&](Printer *p) { p->print_test_header(info); }); |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | void Framework::log_test_skipped(const TestInfo &info) |
| 278 | { |
nothing calls this directly
no test coverage detected