| 14672 | } |
| 14673 | |
| 14674 | bool TestSpec::hasFilters() const { |
| 14675 | return !m_filters.empty(); |
| 14676 | } |
| 14677 | |
| 14678 | bool TestSpec::matches( TestCaseInfo const& testCase ) const { |
| 14679 | return std::any_of( m_filters.begin(), m_filters.end(), [&]( Filter const& f ){ return f.matches( testCase ); } ); |
no test coverage detected