| 9921 | return sorted; |
| 9922 | } |
| 9923 | bool matchTest(TestCase const &testCase, TestSpec const &testSpec, IConfig const &config) { |
| 9924 | return testSpec.matches(testCase) && (config.allowThrows() || !testCase.throws()); |
| 9925 | } |
| 9926 | |
| 9927 | void enforceNoDuplicateTestCases(std::vector<TestCase> const &functions) { |
| 9928 | std::set<TestCase> seenFunctions; |
no test coverage detected