| 13634 | } |
| 13635 | |
| 13636 | bool isThrowSafe( TestCase const& testCase, IConfig const& config ) { |
| 13637 | return !testCase.throws() || config.allowThrows(); |
| 13638 | } |
| 13639 | |
| 13640 | bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { |
| 13641 | return testSpec.matches( testCase ) && isThrowSafe( testCase, config ); |
no test coverage detected