Package org.jboss.cache.eviction.minttl

Source Code of org.jboss.cache.eviction.minttl.LFUMinTTLTest

package org.jboss.cache.eviction.minttl;

import org.jboss.cache.eviction.EvictionAlgorithmConfigBase;
import org.jboss.cache.eviction.LFUAlgorithmConfig;
import org.testng.annotations.Test;

/**
* @author <a href="mailto:manik AT jboss DOT org">Manik Surtani</a>
* @since 2.1.0
*/
@Test(groups = {"functional"})
public class LFUMinTTLTest extends MinTTLTestBase
{
   @Override
   protected EvictionAlgorithmConfigBase getEvictionAlgorithmConfig()
   {
      return new LFUAlgorithmConfig();
   }
}
TOP

Related Classes of org.jboss.cache.eviction.minttl.LFUMinTTLTest

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.