| 2789 | class TagPattern : public Pattern { |
| 2790 | public: |
| 2791 | TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} |
| 2792 | virtual ~TagPattern(); |
| 2793 | virtual bool matches( TestCaseInfo const& testCase ) const { |
| 2794 | return testCase.lcaseTags.find( m_tag ) != testCase.lcaseTags.end(); |