| 5022 | namespace Catch { |
| 5023 | |
| 5024 | inline void abortAfterFirst( ConfigData& config ) { config.abortAfter = 1; } |
| 5025 | inline void abortAfterX( ConfigData& config, int x ) { |
| 5026 | if( x < 1 ) |
| 5027 | throw std::runtime_error( "Value after -x or --abortAfter must be greater than zero" ); |
nothing calls this directly
no outgoing calls
no test coverage detected