| 14257 | } |
| 14258 | |
| 14259 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 14260 | return testSpec.matches( testCase ) && isThrowSafe( testCase, config ); |
| 14261 | } |
| 14262 | |
| 14263 | void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) { |
| 14264 | std::set<TestCase> seenFunctions; |
no test coverage detected