| 10406 | } |
| 10407 | |
| 10408 | TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} |
| 10409 | bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { |
| 10410 | return std::find(begin(testCase.lcaseTags), |
| 10411 | end(testCase.lcaseTags), |