| 3561 | class ExcludedPattern : public Pattern { |
| 3562 | public: |
| 3563 | ExcludedPattern( Ptr<Pattern> const& underlyingPattern ) : m_underlyingPattern( underlyingPattern ) {} |
| 3564 | virtual ~ExcludedPattern(); |
| 3565 | virtual bool matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->matches( testCase ); } |
| 3566 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected