| 11916 | } |
| 11917 | |
| 11918 | TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) : m_underlyingPattern( underlyingPattern ) {} |
| 11919 | bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->matches( testCase ); } |
| 11920 | |
| 11921 | bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const { |
nothing calls this directly
no outgoing calls
no test coverage detected