| 14641 | } |
| 14642 | |
| 14643 | TestSpec::TagPattern::TagPattern( std::string const& tag, std::string const& filterString ) |
| 14644 | : Pattern( filterString ) |
| 14645 | , m_tag( toLower( tag ) ) |
| 14646 | {} |
| 14647 | |
| 14648 | bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { |
| 14649 | return std::find(begin(testCase.lcaseTags), |