| 264 | } |
| 265 | |
| 266 | int main(int, char** argv) |
| 267 | { |
| 268 | try |
| 269 | { |
| 270 | test_variable_state(); |
| 271 | test_console_variables(); |
| 272 | test_ini(); |
| 273 | } |
| 274 | catch (const std::runtime_error & err) |
| 275 | { |
| 276 | fprintf(stderr, "%s", err.what()); |
| 277 | return 1; |
| 278 | } |
| 279 | return 0; |
| 280 | } |
nothing calls this directly
no test coverage detected