| 359 | @Test |
| 360 | public void testExceptionFromMethod() { |
| 361 | class App { |
| 362 | @Option(names = "--jvm") |
| 363 | public void jvmException(String value) { throw new IllegalArgumentException("Boo!"); } |
| 364 | } |
| 365 | |
| 366 | CommandLine parser = new CommandLine(new App()); |
| 367 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected