| 16820 | } |
| 16821 | |
| 16822 | std::string fileNameTag(const std::vector<std::string> &tags) { |
| 16823 | auto it = std::find_if(begin(tags), |
| 16824 | end(tags), |
| 16825 | [] (std::string const& tag) {return tag.front() == '#'; }); |
| 16826 | if (it != tags.end()) |
| 16827 | return it->substr(1); |
| 16828 | return std::string(); |
| 16829 | } |
| 16830 | } // anonymous namespace |
| 16831 | |
| 16832 | JunitReporter::JunitReporter( ReporterConfig const& _config ) |
no test coverage detected