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

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


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

  Modified:    tests/functional/org/jboss/cache/marshall   
                        CustomCollectionTest.java
                        MethodCallFactoryTest.java LocalTest.java
  Log:
  JBCACHE-969 - Move transaction classes to org.jboss.cache.transaction
  
  Revision  Changes    Path
  1.3       +1 -1      JBossCache/tests/functional/org/jboss/cache/marshall/CustomCollectionTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CustomCollectionTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/marshall/CustomCollectionTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CustomCollectionTest.java	12 Jan 2007 15:53:56 -0000	1.2
  +++ CustomCollectionTest.java	7 Feb 2007 22:06:49 -0000	1.3
  @@ -216,7 +216,7 @@
      {
         Cache cache = DefaultCacheFactory.getInstance().createCache(false);
         cache.getConfiguration().setCacheMode(Configuration.CacheMode.REPL_SYNC);
  -      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
         return cache;
      }
  
  
  
  1.2       +2 -1      JBossCache/tests/functional/org/jboss/cache/marshall/MethodCallFactoryTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MethodCallFactoryTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/marshall/MethodCallFactoryTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- MethodCallFactoryTest.java	30 Aug 2006 17:08:19 -0000	1.1
  +++ MethodCallFactoryTest.java	7 Feb 2007 22:06:49 -0000	1.2
  @@ -1,7 +1,8 @@
   package org.jboss.cache.marshall;
   
   import junit.framework.TestCase;
  -import org.jboss.cache.GlobalTransaction;
  +
  +import org.jboss.cache.transaction.GlobalTransaction;
   
   /**
    * @author <a href="mailto:manik at jboss.org">Manik Surtani</a>
  
  
  
  1.14      +2 -2      JBossCache/tests/functional/org/jboss/cache/marshall/LocalTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LocalTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/marshall/LocalTest.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- LocalTest.java	11 Jan 2007 13:49:05 -0000	1.13
  +++ LocalTest.java	7 Feb 2007 22:06:49 -0000	1.14
  @@ -19,7 +19,7 @@
    * Simple functional tests for LegacyTreeCacheMarshaller
    *
    * @author Ben Wang
  - * @version $Id: LocalTest.java,v 1.13 2007/01/11 13:49:05 msurtani Exp $
  + * @version $Id: LocalTest.java,v 1.14 2007/02/07 22:06:49 genman Exp $
    */
   public class LocalTest extends RegionBasedMarshallingTestBase
   {
  @@ -36,7 +36,7 @@
         super.setUp();
         cache = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
         cache.getConfiguration().setCacheMode(Configuration.CacheMode.LOCAL);
  -      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
         cache.create();
         cache.start();
  
  
  



More information about the jboss-cvs-commits mailing list