01: /*
02: * Copyright 2002 (C) TJDO.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the TJDO License version 1.0.
06: * See the terms of the TJDO License in the documentation provided with this software.
07: *
08: * $Id: SoftValueMapTest.java,v 1.3 2002/11/08 05:06:28 jackknifebarber Exp $
09: */
10:
11: package com.triactive.jdo.util.test;
12:
13: import com.triactive.jdo.util.ReferenceValueMap;
14: import com.triactive.jdo.util.SoftValueMap;
15:
16: /**
17: * Tests the functionality of {@link SoftValueMap}.
18: *
19: * @author <a href="mailto:mmartin5@austin.rr.com">Mike Martin</a>
20: * @version $Revision: 1.3 $
21: */
22:
23: public class SoftValueMapTest extends ReferenceValueMapTestCase {
24: /**
25: * Used by the JUnit framework to construct tests. Normally, programmers
26: * would never explicitly use this constructor.
27: *
28: * @param name Name of the <tt>TestCase</tt>.
29: */
30:
31: public SoftValueMapTest(String name) {
32: super (name);
33: }
34:
35: protected ReferenceValueMap newReferenceValueMap() {
36: return new SoftValueMap();
37: }
38: }
|