| 16507 | } |
| 16508 | |
| 16509 | std::string fileNameTag(const std::vector<std::string> &tags) { |
| 16510 | auto it = std::find_if(begin(tags), |
| 16511 | end(tags), |
| 16512 | [] (std::string const& tag) {return tag.front() == '#'; }); |
| 16513 | if (it != tags.end()) |
| 16514 | return it->substr(1); |
| 16515 | return std::string(); |
| 16516 | } |
| 16517 | } // anonymous namespace |
| 16518 | |
| 16519 | JunitReporter::JunitReporter( ReporterConfig const& _config ) |
no test coverage detected