Renamed AltHashtableTest to AltHashtableTestCase for consistency.
Also removed unneeded constructor. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@209410 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -18,12 +18,8 @@ package org.apache.commons.logging;
|
||||
|
||||
import junit.framework.*;
|
||||
|
||||
public class AltHashtableTest extends TestCase {
|
||||
public class AltHashtableTestCase extends TestCase {
|
||||
|
||||
public AltHashtableTest(String testName) {
|
||||
super(testName);
|
||||
}
|
||||
|
||||
public void testType() {
|
||||
assertTrue(LogFactory.factories instanceof AltHashtable);
|
||||
}
|
||||
@@ -36,7 +32,7 @@ public class AltHashtableTest extends TestCase {
|
||||
Thread thread = new Thread(
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
LogFactory.getLog(AltHashtableTest.class);
|
||||
LogFactory.getLog(AltHashtableTestCase.class);
|
||||
}
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user