testabstractcache.java

来自「一个不错的cache」· Java 代码 · 共 102 行

JAVA
102
字号
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.oscache.base.algorithm;import junit.framework.TestCase;/** * Test class for the AbstractCache class. It tests all public methods of * the AbstractCache and assert the results. It is design to run under JUnit. * * $Id: TestAbstractCache.java,v 1.1 2003/07/19 09:58:49 chris_miller Exp $ * @version        $Revision: 1.1 $ * @author <a href="mailto:abergevin@pyxis-tech.com">Alain Bergevin</a> */public abstract class TestAbstractCache extends TestCase {    /**     * Invalid cache capacity     */    protected final int INVALID_MAX_ENTRIES = 0;    /**     * Cache capacity     */    protected final int MAX_ENTRIES = 3;    /**     * Constructor     * <p>     * @param str The test name (required by JUnit)     */    protected TestAbstractCache(String str) {        super(str);    }    /**     * Test the method that verify if the cache contains a specific key     */    public abstract void testContainsKey();    /**     * Test the get from the cache     */    public abstract void testGet();    /**     * Test the capacity setting     */    public void testGetSetMaxEntries() {        getCache().setMaxEntries(MAX_ENTRIES);        assertEquals(MAX_ENTRIES, getCache().getMaxEntries());        // Specify an invalid capacity        try {            getCache().setMaxEntries(INVALID_MAX_ENTRIES);            fail("Cache capacity set with an invalid argument");        } catch (Exception e) {            // This is what we expect        }    }    /**     * Test the setting of the memory cache     */    public void testGetSetMemoryCache() {        getCache().setMemoryCaching(true);        assertTrue(getCache().isMemoryCaching());    }    /**     * Test the iterator retrieval     */    public abstract void testIterator();    /**     * Test the put into the cache     */    public abstract void testPut();    /**     * Test the remove from the cache     */    public abstract void testRemove();    /**     * Test the specific details about the cache algorithm     */    public abstract void testRemoveItem();    /**     * Test the PersistenceListener setter. Since the persistance listener is     * an interface, just call the setter with null     */    public void testSetPersistenceListener() {        getCache().setPersistenceListener(null);    }    // Abstract method that returns an instance of an admin    protected abstract AbstractConcurrentReadCache getCache();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?