Home | History | Annotate | Download | only in internal

Lines Matching defs:matches

26     bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const {
27 return m_wildcardPattern.matches( toLower( testCase.name ) );
31 bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const {
38 bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->matches( testCase ); }
40 bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const {
43 if( !pattern->matches( testCase ) )
52 bool TestSpec::matches( TestCaseInfo const& testCase ) const {
53 // A TestSpec matches if any filter matches
55 if( filter.matches( testCase ) )