| 9706 | } |
| 9707 | |
| 9708 | TagAlias const *TagAliasRegistry::find(std::string const &alias) const { |
| 9709 | auto it = m_registry.find(alias); |
| 9710 | if (it != m_registry.end()) |
| 9711 | return &(it->second); |
| 9712 | else |
| 9713 | return nullptr; |
| 9714 | } |
| 9715 | |
| 9716 | std::string TagAliasRegistry::expandAliases(std::string const &unexpandedTestSpec) const { |
| 9717 | std::string expandedTestSpec = unexpandedTestSpec; |
no test coverage detected