| 11586 | TagAliasRegistry::~TagAliasRegistry() {} |
| 11587 | |
| 11588 | TagAlias const* TagAliasRegistry::find( std::string const& alias ) const { |
| 11589 | auto it = m_registry.find( alias ); |
| 11590 | if( it != m_registry.end() ) |
| 11591 | return &(it->second); |
| 11592 | else |
| 11593 | return nullptr; |
| 11594 | } |
| 11595 | |
| 11596 | std::string TagAliasRegistry::expandAliases( std::string const& unexpandedTestSpec ) const { |
| 11597 | std::string expandedTestSpec = unexpandedTestSpec; |
no test coverage detected