| 12218 | } |
| 12219 | |
| 12220 | std::string fileNameTag(const std::vector<std::string> &tags) { |
| 12221 | auto it = std::find_if(begin(tags), |
| 12222 | end(tags), |
| 12223 | [] (std::string const& tag) {return tag.front() == '#'; }); |
| 12224 | if (it != tags.end()) |
| 12225 | return it->substr(1); |
| 12226 | return std::string(); |
| 12227 | } |
| 12228 | } // anonymous namespace |
| 12229 | |
| 12230 | JunitReporter::JunitReporter( ReporterConfig const& _config ) |
no test coverage detected