| 14632 | } |
| 14633 | |
| 14634 | TestSpec::NamePattern::NamePattern( std::string const& name, std::string const& filterString ) |
| 14635 | : Pattern( filterString ) |
| 14636 | , m_wildcardPattern( toLower( name ), CaseSensitive::No ) |
| 14637 | {} |
| 14638 | |
| 14639 | bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { |
| 14640 | return m_wildcardPattern.matches( testCase.name ); |