| 7184 | return sorted; |
| 7185 | } |
| 7186 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 7187 | return testSpec.matches( testCase ) && ( config.allowThrows() || !testCase.throws() ); |
| 7188 | } |
| 7189 | |
| 7190 | void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) { |
| 7191 | std::set<TestCase> seenFunctions; |
no test coverage detected