Package org.jboss.cache.eviction.minttl

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

package org.jboss.cache.eviction.minttl;

import org.jboss.cache.eviction.EvictionAlgorithmConfigBase;
import org.jboss.cache.eviction.LRUAlgorithmConfig;
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 LRUMinTTLTest extends MinTTLTestBase
{
   @Override
   protected EvictionAlgorithmConfigBase getEvictionAlgorithmConfig()
   {
      LRUAlgorithmConfig cfg = new LRUAlgorithmConfig();
      cfg.setTimeToLive(200);
      return cfg;
   }
}
TOP

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

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.