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

Elias Ross genman at noderunner.net
Wed Feb 7 17:06:57 EST 2007


  User: genman  
  Date: 07/02/07 17:06:57

  Modified:    tests/functional/org/jboss/cache/factories 
                        InterceptorChainFactoryTest.java
  Log:
  JBCACHE-969 - Move transaction classes to org.jboss.cache.transaction
  
  Revision  Changes    Path
  1.9       +4 -4      JBossCache/tests/functional/org/jboss/cache/factories/InterceptorChainFactoryTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InterceptorChainFactoryTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/factories/InterceptorChainFactoryTest.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- InterceptorChainFactoryTest.java	11 Jan 2007 13:49:06 -0000	1.8
  +++ InterceptorChainFactoryTest.java	7 Feb 2007 22:06:57 -0000	1.9
  @@ -62,7 +62,7 @@
      public void testTxConfig() throws Exception
      {
         cache.getConfiguration().setExposeManagementStatistics(false);
  -      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
   
         Interceptor chain = new InterceptorChainFactory().buildInterceptorChain(cache);
         List<Interceptor> list = InterceptorChainFactory.asList(chain);
  @@ -107,7 +107,7 @@
      public void testSharedCacheLoaderConfig() throws Exception
      {
         cache.getConfiguration().setExposeManagementStatistics(false);
  -      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         cache.getConfiguration().setCacheLoaderConfig(getCacheLoaderConfig(false, false));
         cache.getConfiguration().setCacheMode("REPL_ASYNC");
         cache.getConfiguration().setFetchInMemoryState(false);
  @@ -137,7 +137,7 @@
      public void testUnsharedCacheLoaderConfig() throws Exception
      {
         cache.getConfiguration().setExposeManagementStatistics(false);
  -      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         cache.getConfiguration().setCacheLoaderConfig(getCacheLoaderConfig(false, true));
         cache.getConfiguration().setCacheMode("REPL_ASYNC");
         cache.getConfiguration().setFetchInMemoryState(false);
  @@ -168,7 +168,7 @@
      {
         cache.getConfiguration().setExposeManagementStatistics(false);
         cache.getConfiguration().setCacheMode("repl_sync");
  -      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
  +      cache.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
         Interceptor chain = new InterceptorChainFactory().buildInterceptorChain(cache);
         List<Interceptor> list = InterceptorChainFactory.asList(chain);
         Iterator<Interceptor> interceptors = list.iterator();
  
  
  



More information about the jboss-cvs-commits mailing list