| 11902 | TestSpec::ExcludedPattern::~ExcludedPattern() = default; |
| 11903 | |
| 11904 | TestSpec::NamePattern::NamePattern( std::string const& name ) |
| 11905 | : m_wildcardPattern( toLower( name ), CaseSensitive::No ) |
| 11906 | {} |
| 11907 | bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { |
| 11908 | return m_wildcardPattern.matches( toLower( testCase.name ) ); |
| 11909 | } |