| 14630 | } |
| 14631 | |
| 14632 | TestSpec::TagPattern::TagPattern( std::string const& tag, std::string const& filterString ) |
| 14633 | : Pattern( filterString ) |
| 14634 | , m_tag( toLower( tag ) ) |
| 14635 | {} |
| 14636 | |
| 14637 | bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { |
| 14638 | return std::find(begin(testCase.lcaseTags), |