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

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


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

  Modified:    tests/functional/org/jboss/cache/pojo           
                        ReplicatedSerializableTest.java EnumTest.java
                        ReplicatedByteTest.java NewReplicatedTest.java
                        ReplicatedPutWithBulkRemoveTest.java
                        NewReplicatedTxTest.java
                        ReplicatedNonSerializableTest.java
                        ReplicatedObjectGraphTest.java ReplicatedTest.java
                        ReplicatedTxTest.java
                        ReplicatedCircularGraphTest.java
  Log:
  rename UnitTestCacheFactory to UnitTestCacheConfigurationFactory
  
  Revision  Changes    Path
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedSerializableTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedSerializableTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedSerializableTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedSerializableTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedSerializableTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -13,7 +13,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.CacheObject;
   import org.jboss.cache.pojo.test.Student;
   
  @@ -43,8 +43,8 @@
         Properties prop = new Properties();
         prop.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.cache.transaction.DummyContextFactory");
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  -      cache1_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache_.start();
         cache1_.start();
      }
  
  
  
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/EnumTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EnumTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/EnumTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- EnumTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ EnumTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -28,7 +28,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.ArrayObject;
   import org.jboss.cache.pojo.test.Person;
   import org.jboss.cache.pojo.test.EnumPlanet;
  @@ -54,8 +54,8 @@
         super.setUp();
         log.info("setUp() ....");
         boolean toStart = true;
  -      cache_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  -      cache1_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
      }
   
      protected void tearDown() throws Exception
  
  
  
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedByteTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedByteTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedByteTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedByteTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedByteTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -28,7 +28,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Resource;
   
   /**
  @@ -52,9 +52,9 @@
         super.setUp();
         log.info("setUp() ....");
         boolean toStart = false;
  -      cache = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache.start();
  -      cache1 = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1 = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache1.start();
      }
   
  
  
  
  1.3       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/NewReplicatedTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NewReplicatedTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/NewReplicatedTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- NewReplicatedTest.java	13 Feb 2007 07:25:28 -0000	1.2
  +++ NewReplicatedTest.java	16 Apr 2007 17:37:10 -0000	1.3
  @@ -7,7 +7,7 @@
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.Fqn;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Person;
   import org.jboss.cache.pojo.test.SpecialSerializedAddress;
   import org.jboss.cache.pojo.test.Student;
  @@ -41,8 +41,8 @@
         Properties prop = new Properties();
         prop.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.cache.transaction.DummyContextFactory");
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  -      cache1_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache_.start();
         cache1_.start();
      }
  
  
  
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedPutWithBulkRemoveTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedPutWithBulkRemoveTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedPutWithBulkRemoveTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedPutWithBulkRemoveTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedPutWithBulkRemoveTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -13,7 +13,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Address;
   import org.jboss.cache.pojo.test.Person;
   
  @@ -45,8 +45,8 @@
         Properties prop = new Properties();
         prop.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.cache.transaction.DummyContextFactory");
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  -      cache1_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache_.start();
         cache1_.start();
      }
  
  
  
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/NewReplicatedTxTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NewReplicatedTxTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/NewReplicatedTxTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- NewReplicatedTxTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ NewReplicatedTxTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -13,7 +13,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Address;
   import org.jboss.cache.pojo.test.Person;
   import org.jboss.cache.transaction.DummyTransactionManager;
  @@ -60,8 +60,8 @@
         Properties prop = new Properties();
         prop.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.cache.transaction.DummyContextFactory");
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  -      cache1_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache_.start();
         cache1_.start();
   
  
  
  
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedNonSerializableTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedNonSerializableTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedNonSerializableTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedNonSerializableTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedNonSerializableTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -13,7 +13,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   
   import javax.naming.Context;
   import java.util.Properties;
  @@ -41,8 +41,8 @@
         Properties prop = new Properties();
         prop.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.cache.transaction.DummyContextFactory");
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  -      cache1_ = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1_ = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache_.start();
         cache1_.start();
      }
  
  
  
  1.2       +2 -2      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedObjectGraphTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedObjectGraphTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedObjectGraphTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedObjectGraphTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedObjectGraphTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -7,7 +7,7 @@
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.Fqn;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Address;
   import org.jboss.cache.pojo.test.Person;
   
  @@ -47,7 +47,7 @@
      private PojoCache createCache(String name) throws Exception
      {
         boolean toStart = false;
  -      PojoCache tree = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      PojoCache tree = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         tree.start();
         return tree;
      }
  
  
  
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -6,7 +6,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Person;
   import org.jboss.cache.pojo.test.Student;
   
  @@ -33,9 +33,9 @@
         super.setUp();
         log.info("setUp() ....");
         boolean toStart = false;
  -      cache = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache.start();
  -      cache1 = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1 = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache1.start();
      }
   
  
  
  
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedTxTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedTxTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedTxTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedTxTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedTxTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -6,7 +6,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Person;
   import org.jboss.cache.pojo.test.Student;
   import org.jboss.cache.transaction.DummyTransactionManager;
  @@ -46,9 +46,9 @@
         super.setUp();
         log.info("setUp() ....");
         boolean toStart = false;
  -      cache = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache.start();
  -      cache1 = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      cache1 = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         cache1.start();
   
         System.setProperty(Context.INITIAL_CONTEXT_FACTORY, FACTORY);
  
  
  
  1.2       +2 -2      JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedCircularGraphTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedCircularGraphTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/pojo/ReplicatedCircularGraphTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ReplicatedCircularGraphTest.java	13 Jan 2007 15:55:01 -0000	1.1
  +++ ReplicatedCircularGraphTest.java	16 Apr 2007 17:37:10 -0000	1.2
  @@ -13,7 +13,7 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.config.Configuration.CacheMode;
  -import org.jboss.cache.factories.UnitTestCacheFactory;
  +import org.jboss.cache.factories.UnitTestCacheConfigurationFactory;
   import org.jboss.cache.pojo.test.Person;
   import org.jboss.cache.pojo.test.Link;
   import org.jboss.cache.pojo.test.NodeManager;
  @@ -58,7 +58,7 @@
      private PojoCache createCache(String name) throws Exception
      {
         boolean toStart = false;
  -      PojoCache tree = PojoCacheFactory.createCache(UnitTestCacheFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
  +      PojoCache tree = PojoCacheFactory.createCache(UnitTestCacheConfigurationFactory.createConfiguration(CacheMode.REPL_SYNC), toStart);
         tree.start();
         return tree;
      }
  
  
  



More information about the jboss-cvs-commits mailing list