We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5dfa54 commit e280f3fCopy full SHA for e280f3f
1 file changed
src/test/java/org/apache/commons/cli/TypeHandlerTest.java
@@ -210,6 +210,11 @@ public void testCreateFile() {
210
assertEquals(file, TypeHandler.createFile(file.toString()));
211
}
212
213
+ @Test
214
+ public void testCreateFiles() {
215
+ assertThrows(UnsupportedOperationException.class, () -> TypeHandler.createFiles(null));
216
+ }
217
+
218
@Test
219
public void testCreateURL() throws ParseException, MalformedURLException {
220
final URL file = Paths.get("").toAbsolutePath().toUri().toURL();
0 commit comments