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

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


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

  Modified:    tests/functional/org/jboss/cache/pojo/region 
                        ReplicatedTest.java
  Log:
  rename UnitTestCacheFactory to UnitTestCacheConfigurationFactory
  
  Revision  Changes    Path
  1.2       +3 -3      JBossCache/tests/functional/org/jboss/cache/pojo/region/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/region/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:06 -0000	1.1
  +++ ReplicatedTest.java	16 Apr 2007 17:37:12 -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.*;
   import org.jboss.cache.pojo.test.Person;
   import org.jboss.cache.pojo.test.Student;
  @@ -42,9 +42,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();
         cache.getCache().getRegion(Fqn.fromString("SESSION"), true);
         cache1.getCache().getRegion(Fqn.fromString("SESSION"), true);
  
  
  



More information about the jboss-cvs-commits mailing list