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

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/event    
                        ListTest.java LocalTest.java MapTest.java
                        SetTest.java
  Log:
  added toStart option
  
  Revision  Changes    Path
  1.2       +2 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/event/ListTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ListTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/event/ListTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ListTest.java	28 Jul 2006 09:16:14 -0000	1.1
  +++ ListTest.java	8 Sep 2006 07:55:58 -0000	1.2
  @@ -45,7 +45,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();
   
         reset();
  
  
  
  1.6       +2 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/event/LocalTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LocalTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/event/LocalTest.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- LocalTest.java	28 Jul 2006 09:16:14 -0000	1.5
  +++ LocalTest.java	8 Sep 2006 07:55:58 -0000	1.6
  @@ -45,7 +45,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();
   
         reset();
  
  
  
  1.2       +2 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/event/MapTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MapTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/event/MapTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- MapTest.java	28 Jul 2006 09:16:14 -0000	1.1
  +++ MapTest.java	8 Sep 2006 07:55:58 -0000	1.2
  @@ -46,7 +46,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();
   
         reset();
  
  
  
  1.2       +2 -1      JBossCache/tests-50/functional/org/jboss/cache/pojo/event/SetTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SetTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/event/SetTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SetTest.java	28 Jul 2006 09:16:14 -0000	1.1
  +++ SetTest.java	8 Sep 2006 07:55:58 -0000	1.2
  @@ -46,7 +46,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();
   
         reset();
  
  
  



More information about the jboss-cvs-commits mailing list