| 9 | #include <iostream> |
| 10 | |
| 11 | int main(int argc, char **argv) { |
| 12 | |
| 13 | CLI::FuzzApp fuzzdata; |
| 14 | |
| 15 | auto app = fuzzdata.generateApp(); |
| 16 | try { |
| 17 | |
| 18 | app->parse(argc, argv); |
| 19 | } catch(const CLI::ParseError &e) { |
| 20 | (app)->exit(e); |
| 21 | // this just indicates we caught an error known by CLI |
| 22 | } |
| 23 | |
| 24 | return 0; |
| 25 | } |
nothing calls this directly
no test coverage detected