| 15989 | } |
| 15990 | |
| 15991 | std::string fileNameTag(const std::vector<std::string> &tags) { |
| 15992 | auto it = std::find_if(begin(tags), |
| 15993 | end(tags), |
| 15994 | [] (std::string const& tag) {return tag.front() == '#'; }); |
| 15995 | if (it != tags.end()) |
| 15996 | return it->substr(1); |
| 15997 | return std::string(); |
| 15998 | } |
| 15999 | } // anonymous namespace |
| 16000 | |
| 16001 | JunitReporter::JunitReporter( ReporterConfig const& _config ) |
no test coverage detected