| 3550 | class TagPattern : public Pattern { |
| 3551 | public: |
| 3552 | TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} |
| 3553 | virtual ~TagPattern(); |
| 3554 | virtual bool matches( TestCaseInfo const& testCase ) const { |
| 3555 | return testCase.lcaseTags.find( m_tag ) != testCase.lcaseTags.end(); |