|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SyncInvalidationOptLocksTest.java | - | 100% | 100% | 100% |
|
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.options.cachemodelocal; | |
8 | ||
9 | import org.jboss.cache.config.Configuration; | |
10 | ||
11 | public class SyncInvalidationOptLocksTest extends CacheModeLocalTestBase | |
12 | { | |
13 | 5 | public SyncInvalidationOptLocksTest() |
14 | { | |
15 | 5 | cacheMode = Configuration.CacheMode.INVALIDATION_SYNC; |
16 | 5 | nodeLockingScheme = "OPTIMISTIC"; |
17 | 5 | isInvalidation = true; |
18 | } | |
19 | ||
20 | 20 | protected void delay() |
21 | { | |
22 | } | |
23 | } |
|