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

Ben Wang bwang at jboss.com
Tue Oct 31 06:07:17 EST 2006


  User: bwang   
  Date: 06/10/31 06:07:17

  Modified:    tests-50/functional/org/jboss/cache/pojo/collection           
                        CachedMapNullTest.java ReplicatedSyncMapTest.java
                        ReplicatedSyncSetTest.java CachedListTxTest.java
                        ObjectGraphTest.java CollectionTest.java
                        CachedListImplTest.java ReplicatedSyncListTest.java
                        CachedSetTest.java CachedListTest.java
                        CachedMapTest.java
  Log:
  Refactored to be consistent with Cache factory method name.
  
  Revision  Changes    Path
  1.3       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedMapNullTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedMapNullTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedMapNullTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CachedMapNullTest.java	8 Sep 2006 07:55:58 -0000	1.2
  +++ CachedMapNullTest.java	31 Oct 2006 11:07:16 -0000	1.3
  @@ -40,7 +40,7 @@
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
   
         stage();
  
  
  
  1.4       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ReplicatedSyncMapTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedSyncMapTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ReplicatedSyncMapTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ReplicatedSyncMapTest.java	8 Sep 2006 07:55:58 -0000	1.3
  +++ ReplicatedSyncMapTest.java	31 Oct 2006 11:07:16 -0000	1.4
  @@ -54,7 +54,7 @@
      {
         String configFile = "META-INF/replSync-service.xml";
         boolean toStart = false;
  -      PojoCache cache = PojoCacheFactory.createInstance(configFile, toStart);
  +      PojoCache cache = PojoCacheFactory.createCache(configFile, toStart);
         cache.start();
         return cache;
      }
  
  
  
  1.4       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ReplicatedSyncSetTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedSyncSetTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ReplicatedSyncSetTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ReplicatedSyncSetTest.java	8 Sep 2006 07:55:58 -0000	1.3
  +++ ReplicatedSyncSetTest.java	31 Oct 2006 11:07:16 -0000	1.4
  @@ -51,7 +51,7 @@
      {
         String configFile = "META-INF/replSync-service.xml";
         boolean toStart = false;
  -      PojoCache cache = PojoCacheFactory.createInstance(configFile, toStart);
  +      PojoCache cache = PojoCacheFactory.createCache(configFile, toStart);
         cache.start();
         return cache;
      }
  
  
  
  1.3       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedListTxTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedListTxTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedListTxTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CachedListTxTest.java	8 Sep 2006 07:55:58 -0000	1.2
  +++ CachedListTxTest.java	31 Oct 2006 11:07:16 -0000	1.3
  @@ -31,7 +31,7 @@
         log.info("setUp() ....");
         String configFile = "META-INF/cache-config.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
   
      }
  
  
  
  1.4       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ObjectGraphTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ObjectGraphTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ObjectGraphTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ObjectGraphTest.java	8 Sep 2006 07:55:58 -0000	1.3
  +++ ObjectGraphTest.java	31 Oct 2006 11:07:16 -0000	1.4
  @@ -39,7 +39,7 @@
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.3       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CollectionTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CollectionTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CollectionTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CollectionTest.java	8 Sep 2006 07:55:58 -0000	1.2
  +++ CollectionTest.java	31 Oct 2006 11:07:16 -0000	1.3
  @@ -39,7 +39,7 @@
         log_.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.4       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedListImplTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedListImplTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedListImplTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CachedListImplTest.java	8 Sep 2006 07:55:58 -0000	1.3
  +++ CachedListImplTest.java	31 Oct 2006 11:07:16 -0000	1.4
  @@ -31,7 +31,7 @@
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.4       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ReplicatedSyncListTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplicatedSyncListTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/ReplicatedSyncListTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ReplicatedSyncListTest.java	8 Sep 2006 07:55:58 -0000	1.3
  +++ ReplicatedSyncListTest.java	31 Oct 2006 11:07:16 -0000	1.4
  @@ -51,7 +51,7 @@
      {
         String configFile = "META-INF/replSync-service.xml";
         boolean toStart = false;
  -      PojoCache cache = PojoCacheFactory.createInstance(configFile, toStart);
  +      PojoCache cache = PojoCacheFactory.createCache(configFile, toStart);
         cache.start();
         return cache;
      }
  
  
  
  1.4       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedSetTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedSetTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedSetTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CachedSetTest.java	8 Sep 2006 07:55:58 -0000	1.3
  +++ CachedSetTest.java	31 Oct 2006 11:07:16 -0000	1.4
  @@ -44,7 +44,7 @@
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
   
         stage();
  
  
  
  1.5       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedListTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedListTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedListTest.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- CachedListTest.java	10 Oct 2006 08:08:06 -0000	1.4
  +++ CachedListTest.java	31 Oct 2006 11:07:16 -0000	1.5
  @@ -40,7 +40,7 @@
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.5       +1 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedMapTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CachedMapTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/collection/CachedMapTest.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- CachedMapTest.java	17 Sep 2006 07:49:16 -0000	1.4
  +++ CachedMapTest.java	31 Oct 2006 11:07:16 -0000	1.5
  @@ -41,7 +41,7 @@
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
         boolean toStart = false;
  -      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
  +      cache_ = PojoCacheFactory.createCache(configFile, toStart);
         cache_.start();
   
         stage();
  
  
  



More information about the jboss-cvs-commits mailing list