rdonkin 2004/11/10 14:59:39
Added: logging/optional/src/test/org/apache/commons/logging
LogFactoryTest.java
Log:
LogFactory's Hashtable implementation (used to store LogFactoryImpl by classloader) can
now be subclassed. This will default to WeakHashtable when this is present on the classpath,
Hashtable otherwise. The implementation class can be specified by a system property. Based
on a contribution by Brian Stansberry.
Revision Changes Path
1.1 jakarta-commons/logging/optional/src/test/org/apache/commons/logging/LogFactoryTest.java
Index: LogFactoryTest.java
===================================================================
/*
* Copyright 2004 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.logging;
import junit.framework.*;
import java.util.*;
import org.apache.commons.logging.impl.WeakHashtable;
public class LogFactoryTest extends TestCase {
/** Maximum number of iterations before our test fails */
private static final int MAX_GC_ITERATIONS = 50;
public LogFactoryTest(String testName) {
super(testName);
}
public void testLogFactoryType() {
assertTrue(LogFactory.factories instanceof WeakHashtable);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org
|