| 14035 | } |
| 14036 | |
| 14037 | bool TestSpec::hasFilters() const { |
| 14038 | return !m_filters.empty(); |
| 14039 | } |
| 14040 | |
| 14041 | bool TestSpec::matches( TestCaseInfo const& testCase ) const { |
| 14042 | return std::any_of( m_filters.begin(), m_filters.end(), [&]( Filter const& f ){ return f.matches( testCase ); } ); |
no test coverage detected