| 67 | } |
| 68 | |
| 69 | int main(int argc, const char* argv[]) |
| 70 | { |
| 71 | try |
| 72 | { |
| 73 | test_option_validity(); |
| 74 | return 0; |
| 75 | } |
| 76 | catch (const ErrorException& e) |
| 77 | { |
| 78 | fmt::print(stderr, "Error: {}\n", e.message); |
| 79 | return 1; |
| 80 | } |
| 81 | } |
nothing calls this directly
no test coverage detected