| 3193 | class TagPattern : public Pattern { |
| 3194 | public: |
| 3195 | TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} |
| 3196 | virtual ~TagPattern(); |
| 3197 | virtual bool matches( TestCaseInfo const& testCase ) const { |
| 3198 | return testCase.lcaseTags.find( m_tag ) != testCase.lcaseTags.end(); |