1
0

Rename LogTest to LogTestCase for consistency.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@209713 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Kitching
2005-07-08 07:08:54 +00:00
parent bfb095df60
commit 9d0c1a7422

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2001-2004 The Apache Software Foundation.
* Copyright 2001-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import junit.framework.TestSuite;
*
*
*/
public class LogTest extends AbstractLogTest
public class LogTestCase extends AbstractLogTest
{
/**
@@ -45,16 +45,7 @@ public class LogTest extends AbstractLogTest
public static void main(String[] args)
{
String[] testCaseName = { LogTest.class.getName() };
String[] testCaseName = { LogTestCase.class.getName() };
junit.textui.TestRunner.main(testCaseName);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTestSuite(LogTest.class);
return suite;
}
}