| 14004 | } |
| 14005 | |
| 14006 | TestSpec::TagPattern::TagPattern( std::string const& tag, std::string const& filterString ) |
| 14007 | : Pattern( filterString ) |
| 14008 | , m_tag( toLower( tag ) ) |
| 14009 | {} |
| 14010 | |
| 14011 | bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { |
| 14012 | return std::find(begin(testCase.lcaseTags), |