This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new 3f3a2e5  Fill in some blanks
3f3a2e5 is described below

commit 3f3a2e52074e44385e513735c28a5f6787ec58c5
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Aug 19 09:07:15 2023 -0400

    Fill in some blanks
---
 src/test/java/org/apache/commons/cli/BasicParserTest.java | 6 ++++++
 src/test/java/org/apache/commons/cli/GnuParserTest.java   | 6 ++++++
 src/test/java/org/apache/commons/cli/PosixParserTest.java | 6 ++++++
 3 files changed, 18 insertions(+)

diff --git a/src/test/java/org/apache/commons/cli/BasicParserTest.java 
b/src/test/java/org/apache/commons/cli/BasicParserTest.java
index e05a38f..5b47fcd 100644
--- a/src/test/java/org/apache/commons/cli/BasicParserTest.java
+++ b/src/test/java/org/apache/commons/cli/BasicParserTest.java
@@ -36,6 +36,12 @@ public class BasicParserTest extends AbstractParserTestCase {
     public void testAmbiguousLongWithoutEqualSingleDash() throws Exception {
     }
 
+    @Override
+    @Test
+    @Ignore("not supported by the BasicParser")
+    public void testAmbiguousLongWithoutEqualSingleDash2() throws Exception {
+    }
+
     @Override
     @Test
     @Ignore("not supported by the BasicParser")
diff --git a/src/test/java/org/apache/commons/cli/GnuParserTest.java 
b/src/test/java/org/apache/commons/cli/GnuParserTest.java
index 92cc24d..9cda17c 100644
--- a/src/test/java/org/apache/commons/cli/GnuParserTest.java
+++ b/src/test/java/org/apache/commons/cli/GnuParserTest.java
@@ -36,6 +36,12 @@ public class GnuParserTest extends AbstractParserTestCase {
     public void testAmbiguousLongWithoutEqualSingleDash() throws Exception {
     }
 
+    @Override
+    @Test
+    @Ignore("not supported by the GnuParser")
+    public void testAmbiguousLongWithoutEqualSingleDash2() throws Exception {
+    }
+
     @Override
     @Test
     @Ignore("not supported by the GnuParser")
diff --git a/src/test/java/org/apache/commons/cli/PosixParserTest.java 
b/src/test/java/org/apache/commons/cli/PosixParserTest.java
index 1987422..71d79b8 100644
--- a/src/test/java/org/apache/commons/cli/PosixParserTest.java
+++ b/src/test/java/org/apache/commons/cli/PosixParserTest.java
@@ -39,6 +39,12 @@ public class PosixParserTest extends AbstractParserTestCase {
     public void testAmbiguousLongWithoutEqualSingleDash() throws Exception {
     }
 
+    @Override
+    @Test
+    @Ignore("not supported by the PosixParser")
+    public void testAmbiguousLongWithoutEqualSingleDash2() throws Exception {
+    }
+
     @Override
     @Test
     @Ignore("not supported by the PosixParser")

Reply via email to