| 11822 | return sorted; |
| 11823 | } |
| 11824 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 11825 | return testSpec.matches( testCase ) && ( config.allowThrows() || !testCase.throws() ); |
| 11826 | } |
| 11827 | |
| 11828 | void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) { |
| 11829 | std::set<TestCase> seenFunctions; |
no test coverage detected