| 12174 | TestSpec::ExcludedPattern::~ExcludedPattern() = default; |
| 12175 | |
| 12176 | TestSpec::NamePattern::NamePattern( std::string const& name ) |
| 12177 | : m_wildcardPattern( toLower( name ), CaseSensitive::No ) |
| 12178 | {} |
| 12179 | bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { |
| 12180 | return m_wildcardPattern.matches( toLower( testCase.name ) ); |
| 12181 | } |