| 12181 | } |
| 12182 | |
| 12183 | TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} |
| 12184 | bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { |
| 12185 | return std::find(begin(testCase.lcaseTags), |
| 12186 | end(testCase.lcaseTags), |