| 16057 | } |
| 16058 | |
| 16059 | TestSpec::ExcludedPattern::ExcludedPattern(PatternPtr const& underlyingPattern) |
| 16060 | : m_underlyingPattern(underlyingPattern) |
| 16061 | { |
| 16062 | } |
| 16063 | bool TestSpec::ExcludedPattern::matches(TestCaseInfo const& testCase) const |
| 16064 | { |
| 16065 | return !m_underlyingPattern->matches(testCase); |
nothing calls this directly
no outgoing calls
no test coverage detected