| 13638 | } |
| 13639 | |
| 13640 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 13641 | return testSpec.matches( testCase ) && isThrowSafe( testCase, config ); |
| 13642 | } |
| 13643 | |
| 13644 | void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) { |
| 13645 | std::set<TestCase> seenFunctions; |
no test coverage detected