Clover coverage report -
Coverage timestamp: Wed Jan 31 2007 15:38:53 EST
file stats: LOC: 25   Methods: 2
NCLOC: 16   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AsyncInvalidationOptLocksTest.java - 100% 100% 100%
coverage
 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    import org.jboss.cache.misc.TestingUtil;
 11   
 12    public class AsyncInvalidationOptLocksTest extends CacheModeLocalTestBase
 13    {
 14  5 public AsyncInvalidationOptLocksTest()
 15    {
 16  5 cacheMode = Configuration.CacheMode.INVALIDATION_ASYNC;
 17  5 nodeLockingScheme = "OPTIMISTIC";
 18  5 isInvalidation = true;
 19    }
 20   
 21  20 protected void delay()
 22    {
 23  20 TestingUtil.sleepThread(500);
 24    }
 25    }