1 /*2 * JBoss, Home of Professional Open Source3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.cache.options.cachemodelocal;8 9 import org.jboss.cache.config.Configuration;10 11 public class SyncReplPessLocksTest extends CacheModeLocalTestBase12 {13 public SyncReplPessLocksTest()14 {15 cacheMode = Configuration.CacheMode.REPL_SYNC;16 nodeLockingScheme = "PESSIMISTIC";17 }18 19 protected void delay()20 {21 }22 }23