| 14032 | } |
| 14033 | |
| 14034 | std::string fileNameTag(const std::vector<std::string> &tags) { |
| 14035 | auto it = std::find_if(begin(tags), |
| 14036 | end(tags), |
| 14037 | [] (std::string const& tag) {return tag.front() == '#'; }); |
| 14038 | if (it != tags.end()) |
| 14039 | return it->substr(1); |
| 14040 | return std::string(); |
| 14041 | } |
| 14042 | } // anonymous namespace |
| 14043 | |
| 14044 | JunitReporter::JunitReporter( ReporterConfig const& _config ) |
no test coverage detected