/*
* The terms of the JPOX License are distributed with the software documentation.
*/
package org.jpox.util;
import org.jpox.util.ReferenceValueMap;
import org.jpox.util.SoftValueMap;
/**
* Tests the functionality of {@link SoftValueMap}.
*
* @author <a href="mailto:mmartin5@austin.rr.com">Mike Martin</a>
*
*/
public class SoftValueMapTest extends ReferenceValueMapTestCase
{
/**
* Used by the JUnit framework to construct tests. Normally, programmers
* would never explicitly use this constructor.
*
* @param name Name of the <tt>TestCase</tt>.
*/
public SoftValueMapTest(String name)
{
super(name);
}
protected ReferenceValueMap newReferenceValueMap()
{
return new SoftValueMap();
}
}