| 10399 | TestSpec::ExcludedPattern::~ExcludedPattern() = default; |
| 10400 | |
| 10401 | TestSpec::NamePattern::NamePattern( std::string const& name ) |
| 10402 | : m_wildcardPattern( toLower( name ), CaseSensitive::No ) |
| 10403 | {} |
| 10404 | bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { |
| 10405 | return m_wildcardPattern.matches( toLower( testCase.name ) ); |
| 10406 | } |