| 11318 | TagAliasRegistry::~TagAliasRegistry() {} |
| 11319 | |
| 11320 | TagAlias const* TagAliasRegistry::find( std::string const& alias ) const { |
| 11321 | auto it = m_registry.find( alias ); |
| 11322 | if( it != m_registry.end() ) |
| 11323 | return &(it->second); |
| 11324 | else |
| 11325 | return nullptr; |
| 11326 | } |
| 11327 | |
| 11328 | std::string TagAliasRegistry::expandAliases( std::string const& unexpandedTestSpec ) const { |
| 11329 | std::string expandedTestSpec = unexpandedTestSpec; |
no test coverage detected