| 11909 | } |
| 11910 | |
| 11911 | TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} |
| 11912 | bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { |
| 11913 | return std::find(begin(testCase.lcaseTags), |
| 11914 | end(testCase.lcaseTags), |