public class RepeatableReadAtomicMapAPITest extends AtomicMapAPITest {
@Override
protected void createCacheManagers() throws Throwable {
ConfigurationBuilder c = getDefaultClusteredCacheConfig(CacheMode.REPL_SYNC, true);
c.transaction()
.transactionMode(TransactionMode.TRANSACTIONAL)
.lockingMode(LockingMode.PESSIMISTIC)
.locking().isolationLevel(IsolationLevel.REPEATABLE_READ)
.locking().lockAcquisitionTimeout(100l);
createClusteredCaches(2, "atomic", c);