[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/transaction ...

Vladmir Blagojevic vladimir.blagojevic at jboss.com
Mon Apr 16 13:37:13 EDT 2007


  User: vblagojevic
  Date: 07/04/16 13:37:13

  Modified:    tests/functional/org/jboss/cache/transaction 
                        ReplicatedTransactionDeadlockTest.java
  Log:
  rename UnitTestCacheFactory to UnitTestCacheConfigurationFactory
  
  Revision  Changes    Path
  1.10      +7 -7      JBossCache/tests/functional/org/jboss/cache/transaction/ReplicatedTransactionDeadlockTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedTransactionDeadlockTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/transaction/ReplicatedTransactionDeadlockTest.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- ReplicatedTransactionDeadlockTest.java	7 Feb 2007 22:06:43 -0000	1.9
  +++ ReplicatedTransactionDeadlockTest.java	16 Apr 2007 17:37:13 -0000	1.10
  @@ -10,7 +10,7 @@
   import org.jboss.cache.Fqn;
   import org.jboss.cache.config.Configuration;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   
   import javax.naming.Context;
   import javax.naming.InitialContext;
  @@ -58,8 +58,8 @@
    * </ul>
    *
    * @author Marian Nikolov
  - * @author $Author: genman $
  - * @version $Date: 2007/02/07 22:06:43 $
  + * @author $Author: vblagojevic $
  + * @version $Date: 2007/04/16 17:37:13 $
    */
   public class ReplicatedTransactionDeadlockTest extends TestCase
   {
  @@ -132,7 +132,7 @@
         DummyTransactionManager.getInstance();
         // setup and start the source cache
         srcCache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
  -      srcCache.setConfiguration(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC));
  +      srcCache.setConfiguration(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC));
         srcCache.getConfiguration().setTransactionManagerLookupClass(
                 "org.jboss.cache.transaction.DummyTransactionManagerLookup");
         srcCache.getConfiguration().setCacheMode(Configuration.CacheMode.REPL_SYNC);
  @@ -143,7 +143,7 @@
         srcCache.start();
         // setup and start the destination cache
         dstCache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
  -      dstCache.setConfiguration(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC));
  +      dstCache.setConfiguration(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC));
         dstCache.getConfiguration().setTransactionManagerLookupClass(
                 "org.jboss.cache.transaction.DummyTransactionManagerLookup");
         dstCache.getConfiguration().setCacheMode(Configuration.CacheMode.REPL_SYNC);
  @@ -228,8 +228,8 @@
       * A worker thread that applies the concurrent modifications.
       *
       * @author Marian Nikolov
  -    * @author $Author: genman $
  -    * @version $Date: 2007/02/07 22:06:43 $
  +    * @author $Author: vblagojevic $
  +    * @version $Date: 2007/04/16 17:37:13 $
       */
      private class Worker extends Thread
      {
  
  
  



More information about the jboss-cvs-commits mailing list