Package org.jpox.util

Source Code of org.jpox.util.WeakValueMapTest

/*
* 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.WeakValueMap;


/**
* Tests the functionality of {@link WeakValueMap}.
*
* @author <a href="mailto:mmartin5@austin.rr.com">Mike Martin</a>
*
*/

public class WeakValueMapTest 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 WeakValueMapTest(String name)
    {
        super(name);
    }


    protected ReferenceValueMap newReferenceValueMap()
    {
        return new WeakValueMap();
    }
}
TOP

Related Classes of org.jpox.util.WeakValueMapTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.