Skip to content

Commit 4891e50

Browse files
committed
Better class name
1 parent 16ccfbd commit 4891e50

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/test/java/org/apache/commons/cli/ParserTestCase.java renamed to src/test/java/org/apache/commons/cli/AbstractParserTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
3434
/**
3535
* Abstract test case testing common parser features.
3636
*/
37-
public abstract class ParserTestCase {
37+
public abstract class AbstractParserTestCase {
3838
protected CommandLineParser parser;
3939

4040
protected Options options;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2222
import org.junit.Test;
2323

2424
@SuppressWarnings("deprecation") // tests some deprecated classes
25-
public class BasicParserTest extends ParserTestCase {
25+
public class BasicParserTest extends AbstractParserTestCase {
2626
@Override
2727
@Before
2828
public void setUp() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2222
import org.junit.Before;
2323
import org.junit.Test;
2424

25-
public class DefaultParserTest extends ParserTestCase {
25+
public class DefaultParserTest extends AbstractParserTestCase {
2626

2727
@Override
2828
@Before

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2222
import org.junit.Test;
2323

2424
@SuppressWarnings("deprecation") // tests some deprecated classes
25-
public class GnuParserTest extends ParserTestCase {
25+
public class GnuParserTest extends AbstractParserTestCase {
2626
@Override
2727
@Before
2828
public void setUp() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2424
/**
2525
* Test case for the PosixParser.
2626
*/
27-
public class PosixParserTest extends ParserTestCase {
27+
public class PosixParserTest extends AbstractParserTestCase {
2828
@Override
2929
@SuppressWarnings("deprecation")
3030
@Before

0 commit comments

Comments
 (0)