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

Ben Wang bwang at jboss.com
Fri Sep 8 03:55:58 EDT 2006


  User: bwang   
  Date: 06/09/08 03:55:58

  Modified:    tests-50/functional/org/jboss/cache/pojo/collection           
                        CachedListImplTest.java CachedListTest.java
                        CachedListTxTest.java CachedMapNullTest.java
                        CachedMapTest.java CachedSetTest.java
                        CollectionTest.java ObjectGraphTest.java
                        ReplicatedSyncListTest.java
                        ReplicatedSyncMapTest.java
                        ReplicatedSyncSetTest.java
  Log:
  added toStart option
  
  Revision  Changes    Path
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CachedListImplTest.java	20 Jul 2006 18:43:13 -0000	1.2
  +++ CachedListImplTest.java	8 Sep 2006 07:55:58 -0000	1.3
  @@ -30,7 +30,8 @@
         super.setUp();
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.2       +2 -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.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CachedListTest.java	17 Jul 2006 14:41:28 -0000	1.1
  +++ CachedListTest.java	8 Sep 2006 07:55:58 -0000	1.2
  @@ -39,7 +39,8 @@
         super.setUp();
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.2       +2 -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.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CachedListTxTest.java	17 Jul 2006 14:41:28 -0000	1.1
  +++ CachedListTxTest.java	8 Sep 2006 07:55:58 -0000	1.2
  @@ -30,7 +30,8 @@
         super.setUp();
         log.info("setUp() ....");
         String configFile = "META-INF/cache-config.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
   
      }
  
  
  
  1.2       +2 -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.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CachedMapNullTest.java	17 Jul 2006 14:41:28 -0000	1.1
  +++ CachedMapNullTest.java	8 Sep 2006 07:55:58 -0000	1.2
  @@ -39,7 +39,8 @@
         super.setUp();
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
   
         stage();
  
  
  
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CachedMapTest.java	20 Jul 2006 18:43:13 -0000	1.2
  +++ CachedMapTest.java	8 Sep 2006 07:55:58 -0000	1.3
  @@ -40,7 +40,8 @@
         super.setUp();
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
   
         stage();
  
  
  
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CachedSetTest.java	20 Jul 2006 18:43:13 -0000	1.2
  +++ CachedSetTest.java	8 Sep 2006 07:55:58 -0000	1.3
  @@ -43,7 +43,8 @@
         super.setUp();
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
   
         stage();
  
  
  
  1.2       +2 -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.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CollectionTest.java	17 Jul 2006 14:41:28 -0000	1.1
  +++ CollectionTest.java	8 Sep 2006 07:55:58 -0000	1.2
  @@ -38,7 +38,8 @@
         super.setUp();
         log_.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ObjectGraphTest.java	20 Jul 2006 18:43:13 -0000	1.2
  +++ ObjectGraphTest.java	8 Sep 2006 07:55:58 -0000	1.3
  @@ -38,7 +38,8 @@
         super.setUp();
         log.info("setUp() ....");
         String configFile = "META-INF/local-service.xml";
  -      cache_ = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      cache_ = PojoCacheFactory.createInstance(configFile, toStart);
         cache_.start();
      }
   
  
  
  
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ReplicatedSyncListTest.java	17 Jul 2006 10:43:57 -0000	1.2
  +++ ReplicatedSyncListTest.java	8 Sep 2006 07:55:58 -0000	1.3
  @@ -50,7 +50,8 @@
      private PojoCache createCache(String name) throws Exception
      {
         String configFile = "META-INF/replSync-service.xml";
  -      PojoCache cache = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      PojoCache cache = PojoCacheFactory.createInstance(configFile, toStart);
         cache.start();
         return cache;
      }
  
  
  
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ReplicatedSyncMapTest.java	17 Jul 2006 10:43:57 -0000	1.2
  +++ ReplicatedSyncMapTest.java	8 Sep 2006 07:55:58 -0000	1.3
  @@ -53,7 +53,8 @@
      private PojoCache createCache(String name) throws Exception
      {
         String configFile = "META-INF/replSync-service.xml";
  -      PojoCache cache = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      PojoCache cache = PojoCacheFactory.createInstance(configFile, toStart);
         cache.start();
         return cache;
      }
  
  
  
  1.3       +2 -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.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ReplicatedSyncSetTest.java	17 Jul 2006 10:43:57 -0000	1.2
  +++ ReplicatedSyncSetTest.java	8 Sep 2006 07:55:58 -0000	1.3
  @@ -50,7 +50,8 @@
      private PojoCache createCache(String name) throws Exception
      {
         String configFile = "META-INF/replSync-service.xml";
  -      PojoCache cache = PojoCacheFactory.createInstance(configFile);
  +      boolean toStart = false;
  +      PojoCache cache = PojoCacheFactory.createInstance(configFile, toStart);
         cache.start();
         return cache;
      }
  
  
  



More information about the jboss-cvs-commits mailing list