| 14270 | } |
| 14271 | |
| 14272 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 14273 | return testSpec.matches( testCase ) && isThrowSafe( testCase, config ); |
| 14274 | } |
| 14275 | |
| 14276 | void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) { |
| 14277 | std::set<TestCase> seenFunctions; |
no test coverage detected