INTERNAL_CATCH_INLINE bool TestCase::matchesTags( std::string const& tagPattern ) const {
     TagExpression exp;
     TagExpressionParser( exp ).parse( tagPattern );
     return exp.matches( tags );
 }
 bool TestCaseInfo::matchesTags( const std::string& tagPattern ) const {
     TagExpression exp;
     TagExpressionParser( exp ).parse( tagPattern );
     return exp.matches( m_tags );
 }