| 220 | } |
| 221 | |
| 222 | void Framework::print_test_info(std::ostream &os) const |
| 223 | { |
| 224 | if (!_test_info.empty()) |
| 225 | { |
| 226 | os << "CONTEXT:\n"; |
| 227 | |
| 228 | for (const auto &str : _test_info) |
| 229 | { |
| 230 | os << " " << str << "\n"; |
| 231 | } |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | void Framework::add_test_warning(std::string warning) |
| 236 | { |
no test coverage detected