| 10413 | } |
| 10414 | |
| 10415 | TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) : m_underlyingPattern( underlyingPattern ) {} |
| 10416 | bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->matches( testCase ); } |
| 10417 | |
| 10418 | bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const { |
nothing calls this directly
no outgoing calls
no test coverage detected