Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Skipping empty tests
  • Loading branch information
august782 committed Jun 19, 2016
commit fbf766fb605ce7dc0a4fe59ec44c217ec8363d69
50 changes: 26 additions & 24 deletions src/test/java/org/apache/commons/cli/BasicParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
package org.apache.commons.cli;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

@SuppressWarnings("deprecation") // tests some deprecated classes
public class BasicParserTest extends ParserTestCase
Expand All @@ -29,145 +31,145 @@ public void setUp()
parser = new BasicParser();
}

@Override
@Override @Test @Ignore
public void testDoubleDash2() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testLongWithoutEqualSingleDash() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousLongWithoutEqualSingleDash() throws Exception
{
// not supported by the basicParser
}

@Override
@Override @Test @Ignore
public void testNegativeOption() throws Exception
{
// not supported by the BasicParser (CLI-184)
}

@Override
@Override @Test @Ignore
public void testPropertiesOption1() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testPropertiesOption2() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testShortWithEqual() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testShortWithoutEqual() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testLongWithEqualDoubleDash() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testLongWithEqualSingleDash() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption1() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption2() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption3() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption4() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption1() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption2() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption3() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption4() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testPartialLongOptionSingleDash() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testBursting() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testUnrecognizedOptionWithBursting() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testMissingArgWithBursting() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testStopBursting() throws Exception
{
// not supported by the BasicParser
}

@Override
@Override @Test @Ignore
public void testStopBursting2() throws Exception
{
// not supported by the BasicParser
Expand Down
44 changes: 23 additions & 21 deletions src/test/java/org/apache/commons/cli/GnuParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
package org.apache.commons.cli;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

@SuppressWarnings("deprecation") // tests some deprecated classes
public class GnuParserTest extends ParserTestCase
Expand All @@ -29,127 +31,127 @@ public void setUp()
parser = new GnuParser();
}

@Override
@Override @Test @Ignore
public void testDoubleDash2() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testLongWithoutEqualSingleDash() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousLongWithoutEqualSingleDash() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testNegativeOption() throws Exception
{
// not supported by the GnuParser (CLI-184)
}

@Override
@Override @Test @Ignore
public void testLongWithUnexpectedArgument1() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testLongWithUnexpectedArgument2() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testShortWithUnexpectedArgument() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption1() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption2() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption3() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testUnambiguousPartialLongOption4() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption1() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption2() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption3() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testAmbiguousPartialLongOption4() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testPartialLongOptionSingleDash() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testBursting() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testUnrecognizedOptionWithBursting() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testMissingArgWithBursting() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testStopBursting() throws Exception
{
// not supported by the GnuParser
}

@Override
@Override @Test @Ignore
public void testStopBursting2() throws Exception
{
// not supported by the GnuParser
Expand Down
Loading