| 9782 | TagAliasRegistry::~TagAliasRegistry() {} |
| 9783 | |
| 9784 | TagAlias const* TagAliasRegistry::find( std::string const& alias ) const { |
| 9785 | auto it = m_registry.find( alias ); |
| 9786 | if( it != m_registry.end() ) |
| 9787 | return &(it->second); |
| 9788 | else |
| 9789 | return nullptr; |
| 9790 | } |
| 9791 | |
| 9792 | std::string TagAliasRegistry::expandAliases( std::string const& unexpandedTestSpec ) const { |
| 9793 | std::string expandedTestSpec = unexpandedTestSpec; |
no test coverage detected