Skip to content

Commit 7d52b84

Browse files
committed
Renaming TestHelpFormatter to the more obvious HelpFormatterTest
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/branches/cli-1.0.x@544763 13f79535-47bb-0310-9956-ffa450edef68
1 parent 6f972cf commit 7d52b84

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/test/org/apache/commons/cli/TestHelpFormatter.java renamed to src/test/org/apache/commons/cli/HelpFormatterTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@
2929
* @author John Keyes ( john at integralsource.com )
3030
* @author brianegge
3131
**/
32-
public class TestHelpFormatter extends TestCase
32+
public class HelpFormatterTest extends TestCase
3333
{
3434

3535
private static final String EOL = System.getProperty("line.separator");
3636

3737
public static void main( String[] args )
3838
{
39-
String[] testName = { TestHelpFormatter.class.getName() };
39+
String[] testName = { HelpFormatterTest.class.getName() };
4040
junit.textui.TestRunner.main(testName);
4141
}
4242

4343
public static TestSuite suite()
4444
{
45-
return new TestSuite(TestHelpFormatter.class);
45+
return new TestSuite(HelpFormatterTest.class);
4646
}
4747

48-
public TestHelpFormatter( String s )
48+
public HelpFormatterTest( String s )
4949
{
5050
super( s );
5151
}

0 commit comments

Comments
 (0)