Package org.jboss.cache.eviction.minttl

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

package org.jboss.cache.eviction.minttl;

import org.testng.annotations.Test;
import org.jboss.cache.eviction.EvictionPolicyConfigBase;
import org.jboss.cache.eviction.LRUConfiguration;

/**
*
* @author <a href="mailto:manik@jboss.org">Manik Surtani</a>
* @since 2.1.0
*/
@Test(groups = {"functional"})
public class LRUMinTTLTest extends MinTTLTestBase
{
   @Override
   protected EvictionPolicyConfigBase getEvictionPolicyConfig()
   {
      LRUConfiguration cfg = new LRUConfiguration();
      cfg.setTimeToLiveSeconds(1);
      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.