| 13397 | TagAliasRegistry::~TagAliasRegistry() {} |
| 13398 | |
| 13399 | TagAlias const* TagAliasRegistry::find( std::string const& alias ) const { |
| 13400 | auto it = m_registry.find( alias ); |
| 13401 | if( it != m_registry.end() ) |
| 13402 | return &(it->second); |
| 13403 | else |
| 13404 | return nullptr; |
| 13405 | } |
| 13406 | |
| 13407 | std::string TagAliasRegistry::expandAliases( std::string const& unexpandedTestSpec ) const { |
| 13408 | std::string expandedTestSpec = unexpandedTestSpec; |
no test coverage detected