| 5081 | throw std::runtime_error( "colour mode must be one of: auto, yes or no" ); |
| 5082 | } |
| 5083 | inline void forceColour( ConfigData& config ) { |
| 5084 | config.useColour = UseColour::Yes; |
| 5085 | } |
| 5086 | inline void loadTestNamesFromFile( ConfigData& config, std::string const& _filename ) { |
| 5087 | std::ifstream f( _filename.c_str() ); |
| 5088 | if( !f.is_open() ) |
nothing calls this directly
no outgoing calls
no test coverage detected