()
| 35 | public class OptionsTest { |
| 36 | |
| 37 | @Test |
| 38 | void testHelp() { |
| 39 | Options options = Options.parse("--help"); |
| 40 | if (options.isPrintHelp()) { |
| 41 | options.printHelp(); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | @Test |
| 46 | void testJavaVersion() { |
nothing calls this directly
no test coverage detected