| 57 | } |
| 58 | |
| 59 | int main(int argc, const char* argv[]) |
| 60 | { |
| 61 | try |
| 62 | { |
| 63 | test_successful_parsing(); |
| 64 | test_failed_parsing(); |
| 65 | return 0; |
| 66 | } |
| 67 | catch (const ErrorException& e) |
| 68 | { |
| 69 | fmt::print(stderr, "Error: {}\n", e.message); |
| 70 | return 1; |
| 71 | } |
| 72 | } |
nothing calls this directly
no test coverage detected