| 10321 | } |
| 10322 | |
| 10323 | TestSpec::ExcludedPattern::ExcludedPattern(PatternPtr const &underlyingPattern) |
| 10324 | : m_underlyingPattern(underlyingPattern) { |
| 10325 | } |
| 10326 | bool TestSpec::ExcludedPattern::matches(TestCaseInfo const &testCase) const { |
| 10327 | return !m_underlyingPattern->matches(testCase); |
| 10328 | } |
nothing calls this directly
no outgoing calls
no test coverage detected