Skip to content

Commit 3f3a2e5

Browse files
committed
Fill in some blanks
1 parent 4891e50 commit 3f3a2e5

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

src/test/java/org/apache/commons/cli/BasicParserTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ public void setUp() {
3636
public void testAmbiguousLongWithoutEqualSingleDash() throws Exception {
3737
}
3838

39+
@Override
40+
@Test
41+
@Ignore("not supported by the BasicParser")
42+
public void testAmbiguousLongWithoutEqualSingleDash2() throws Exception {
43+
}
44+
3945
@Override
4046
@Test
4147
@Ignore("not supported by the BasicParser")

src/test/java/org/apache/commons/cli/GnuParserTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ public void setUp() {
3636
public void testAmbiguousLongWithoutEqualSingleDash() throws Exception {
3737
}
3838

39+
@Override
40+
@Test
41+
@Ignore("not supported by the GnuParser")
42+
public void testAmbiguousLongWithoutEqualSingleDash2() throws Exception {
43+
}
44+
3945
@Override
4046
@Test
4147
@Ignore("not supported by the GnuParser")

src/test/java/org/apache/commons/cli/PosixParserTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ public void setUp() {
3939
public void testAmbiguousLongWithoutEqualSingleDash() throws Exception {
4040
}
4141

42+
@Override
43+
@Test
44+
@Ignore("not supported by the PosixParser")
45+
public void testAmbiguousLongWithoutEqualSingleDash2() throws Exception {
46+
}
47+
4248
@Override
4349
@Test
4450
@Ignore("not supported by the PosixParser")

0 commit comments

Comments
 (0)