| 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 | } |
| 11910 | |
| 11911 | TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} |
| 11912 | bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { |
no test coverage detected