| 11548 | return sorted; |
| 11549 | } |
| 11550 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 11551 | return testSpec.matches( testCase ) && ( config.allowThrows() || !testCase.throws() ); |
| 11552 | } |
| 11553 | |
| 11554 | void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) { |
| 11555 | std::set<TestCase> seenFunctions; |
no test coverage detected