01: /*
02: * The terms of the JPOX License are distributed with the software documentation.
03: */
04:
05: package org.jpox.util;
06:
07: import org.jpox.util.ReferenceValueMap;
08: import org.jpox.util.SoftValueMap;
09:
10: /**
11: * Tests the functionality of {@link SoftValueMap}.
12: *
13: * @author <a href="mailto:mmartin5@austin.rr.com">Mike Martin</a>
14: *
15: */
16:
17: public class SoftValueMapTest extends ReferenceValueMapTestCase {
18: /**
19: * Used by the JUnit framework to construct tests. Normally, programmers
20: * would never explicitly use this constructor.
21: *
22: * @param name Name of the <tt>TestCase</tt>.
23: */
24:
25: public SoftValueMapTest(String name) {
26: super (name);
27: }
28:
29: protected ReferenceValueMap newReferenceValueMap() {
30: return new SoftValueMap();
31: }
32: }
|