()
| 93 | } |
| 94 | |
| 95 | @Test |
| 96 | void testClasspath() { |
| 97 | Options options = Options.parse( |
| 98 | "-cp", ".\\a.jar", |
| 99 | "-cp", "./dir\\b", |
| 100 | "-cp", "./c" + File.pathSeparator + "d.jar", |
| 101 | "-cp", "e.jar" + File.pathSeparator |
| 102 | ); |
| 103 | assertEquals(List.of(".\\a.jar", "./dir\\b", "./c", "d.jar", "e.jar"), |
| 104 | options.getClassPath()); |
| 105 | } |
| 106 | |
| 107 | } |
nothing calls this directly
no test coverage detected