| 248 | } |
| 249 | |
| 250 | void Framework::print_test_warning(std::ostream &os) const |
| 251 | { |
| 252 | if (!_test_warning.empty()) |
| 253 | { |
| 254 | os << "CONTEXT:\n"; |
| 255 | |
| 256 | for (const auto &str : _test_warning) |
| 257 | { |
| 258 | os << " " << str << "\n"; |
| 259 | } |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | template <typename F> |
| 264 | void Framework::func_on_all_printers(F &&func) |
no test coverage detected