1 /* 2 * JBoss, Home of Professional Open Source 3 * 4 * Distributable under LGPL license. 5 * See terms of license at gnu.org. 6 */ 7 package org.jboss.cache.api; 8 9 10 public class NodeMoveOptimisticTest extends NodeMoveAPITest 11 { 12 public NodeMoveOptimisticTest() 13 { 14 optimistic = true; 15 } 16 17 public void testLocks() 18 { 19 // no op 20 } 21 22 public void testLocksDeepMove() 23 { 24 // no op 25 } 26 } 27