| 270 | } |
| 271 | |
| 272 | int main(int argc, const char* argv[]) |
| 273 | { |
| 274 | try |
| 275 | { |
| 276 | test_setting(); |
| 277 | test_getting(); |
| 278 | test_config(); |
| 279 | test_load(); |
| 280 | test_fields(); |
| 281 | test_options(); |
| 282 | test_findallfields(); |
| 283 | test_rendering(); |
| 284 | } |
| 285 | catch (const ErrorException& e) |
| 286 | { |
| 287 | fmt::print("uncaught error: {}\n", e.message); |
| 288 | return 1; |
| 289 | } |
| 290 | return 0; |
| 291 | } |
nothing calls this directly
no test coverage detected