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