1
0

Rename from BadHashtablePropertyTest to BadHashtablePropertyTestCase for consistency.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@209420 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Kitching
2005-07-06 07:18:39 +00:00
parent 6ceb7c0ab3
commit 02ee1e9086

View File

@@ -22,17 +22,13 @@ import java.util.Hashtable;
/**
* Tests behaviour when the property is misconfigured.
*/
public class BadHashtablePropertyTest extends TestCase {
public class BadHashtablePropertyTestCase extends TestCase {
public BadHashtablePropertyTest(String testName) {
super(testName);
}
public void testType() {
assertTrue(LogFactory.factories instanceof Hashtable);
}
public void testPutCalled() throws Exception {
Log log = LogFactory.getLog(BadHashtablePropertyTest.class);
Log log = LogFactory.getLog(BadHashtablePropertyTestCase.class);
}
}