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