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