| 14334 | } |
| 14335 | |
| 14336 | TestSpec::NamePattern::NamePattern( std::string const& name, std::string const& filterString ) |
| 14337 | : Pattern( filterString ) |
| 14338 | , m_wildcardPattern( toLower( name ), CaseSensitive::No ) |
| 14339 | {} |
| 14340 | |
| 14341 | bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { |
| 14342 | return m_wildcardPattern.matches( testCase.name ); |