()
| 85 | } |
| 86 | |
| 87 | @Test |
| 88 | void testKeepResult() { |
| 89 | Options options = Options.parse(); |
| 90 | assertEquals(Set.of(Plan.KEEP_ALL), options.getKeepResult()); |
| 91 | options = Options.parse("-kr", "pta,def-use"); |
| 92 | assertEquals(Set.of("pta", "def-use"), options.getKeepResult()); |
| 93 | } |
| 94 | |
| 95 | @Test |
| 96 | void testClasspath() { |
nothing calls this directly
no test coverage detected