| 13736 | } |
| 13737 | |
| 13738 | std::string fileNameTag(const std::vector<std::string> &tags) { |
| 13739 | auto it = std::find_if(begin(tags), |
| 13740 | end(tags), |
| 13741 | [] (std::string const& tag) {return tag.front() == '#'; }); |
| 13742 | if (it != tags.end()) |
| 13743 | return it->substr(1); |
| 13744 | return std::string(); |
| 13745 | } |
| 13746 | } // anonymous namespace |
| 13747 | |
| 13748 | JunitReporter::JunitReporter( ReporterConfig const& _config ) |
no test coverage detected