| 13976 | } |
| 13977 | |
| 13978 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 13979 | return testSpec.matches( testCase ) && isThrowSafe( testCase, config ); |
| 13980 | } |
| 13981 | |
| 13982 | void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) { |
| 13983 | std::set<TestCase> seenFunctions; |
no test coverage detected