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

Elias Ross genman at noderunner.net
Wed Feb 7 17:06:41 EST 2007


  User: genman  
  Date: 07/02/07 17:06:41

  Modified:    tests/functional/org/jboss/cache/replicated   
                        SyncReplTxTest.java ReplicationExceptionTest.java
                        SyncCacheListenerTest.java
  Log:
  JBCACHE-969 - Move transaction classes to org.jboss.cache.transaction
  
  Revision  Changes    Path
  1.21      +5 -5      JBossCache/tests/functional/org/jboss/cache/replicated/SyncReplTxTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SyncReplTxTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/replicated/SyncReplTxTest.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- SyncReplTxTest.java	31 Jan 2007 02:40:22 -0000	1.20
  +++ SyncReplTxTest.java	7 Feb 2007 22:06:41 -0000	1.21
  @@ -42,7 +42,7 @@
    * Note: we use DummyTransactionManager for Tx purpose instead of relying on
    * jta.
    *
  - * @version $Revision: 1.20 $
  + * @version $Revision: 1.21 $
    */
   public class SyncReplTxTest extends TestCase
   {
  @@ -98,8 +98,8 @@
         cache1.getConfiguration().setIsolationLevel(IsolationLevel.SERIALIZABLE);
         cache2.getConfiguration().setIsolationLevel(IsolationLevel.SERIALIZABLE);
   
  -      cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  -      cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
  +      cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         cache1.getConfiguration().setLockAcquisitionTimeout(5000);
         cache2.getConfiguration().setLockAcquisitionTimeout(5000);
   
  @@ -704,8 +704,8 @@
         c2.getConfiguration().setSyncRollbackPhase(true);
         c1.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
         c2.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
  -      c1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  -      c2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      c1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
  +      c2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         c1.getConfiguration().setLockAcquisitionTimeout(5000);
         c2.getConfiguration().setLockAcquisitionTimeout(5000);
         c1.start();
  
  
  
  1.7       +3 -3      JBossCache/tests/functional/org/jboss/cache/replicated/ReplicationExceptionTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicationExceptionTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/replicated/ReplicationExceptionTest.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- ReplicationExceptionTest.java	11 Jan 2007 13:49:07 -0000	1.6
  +++ ReplicationExceptionTest.java	7 Feb 2007 22:06:41 -0000	1.7
  @@ -30,7 +30,7 @@
    * Teting of replication exception for a Nonerislizable object
    *
    * @author Ben Wang
  - * @version $Revision: 1.6 $
  + * @version $Revision: 1.7 $
    */
   public class ReplicationExceptionTest extends TestCase
   {
  @@ -102,8 +102,8 @@
         cache1.getConfiguration().setIsolationLevel(IsolationLevel.SERIALIZABLE);
         cache2.getConfiguration().setIsolationLevel(IsolationLevel.SERIALIZABLE);
   
  -      cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  -      cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
  +      cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         /*
         cache1.setTransactionManagerLookupClass("org.jboss.cache.JBossTransactionManagerLookup");
         cache2.setTransactionManagerLookupClass("org.jboss.cache.JBossTransactionManagerLookup");
  
  
  
  1.15      +3 -3      JBossCache/tests/functional/org/jboss/cache/replicated/SyncCacheListenerTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SyncCacheListenerTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/replicated/SyncCacheListenerTest.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -b -r1.14 -r1.15
  --- SyncCacheListenerTest.java	11 Jan 2007 13:49:07 -0000	1.14
  +++ SyncCacheListenerTest.java	7 Feb 2007 22:06:41 -0000	1.15
  @@ -32,7 +32,7 @@
   /**
    * Test out the TreeCacheListener
    *
  - * @version $Revision: 1.14 $
  + * @version $Revision: 1.15 $
    */
   public class SyncCacheListenerTest extends TestCase
   {
  @@ -87,8 +87,8 @@
         cache1.getConfiguration().setIsolationLevel(IsolationLevel.SERIALIZABLE);
         cache2.getConfiguration().setIsolationLevel(IsolationLevel.SERIALIZABLE);
   
  -      cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  -      cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
  +      cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         /*
         cache1.setTransactionManagerLookupClass("org.jboss.cache.JBossTransactionManagerLookup");
         cache2.setTransactionManagerLookupClass("org.jboss.cache.JBossTransactionManagerLookup");
  
  
  



More information about the jboss-cvs-commits mailing list