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

Ben Wang bwang at jboss.com
Thu Jul 13 11:56:41 EDT 2006


  User: bwang   
  Date: 06/07/13 11:56:41

  Modified:    tests-50/functional/org/jboss/cache/pojo  NewLocalTest.java
  Log:
  Refctoring and moved some classes to impl dir.
  
  Revision  Changes    Path
  1.5       +4 -2      JBossCache/tests-50/functional/org/jboss/cache/pojo/NewLocalTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NewLocalTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/pojo/NewLocalTest.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- NewLocalTest.java	12 Jul 2006 13:29:04 -0000	1.4
  +++ NewLocalTest.java	13 Jul 2006 15:56:41 -0000	1.5
  @@ -6,6 +6,8 @@
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.pojo.test.Person;
  +import org.jboss.cache.pojo.impl.InternalHelper;
  +import org.jboss.cache.pojo.impl.InternalConstant;
   
   import java.util.Map;
   
  @@ -55,7 +57,7 @@
   
         try
         {
  -         cache_.attach(InternalDelegate.JBOSS_INTERNAL.toString(), test);
  +         cache_.attach(InternalConstant.JBOSS_INTERNAL.toString(), test);
            fail("putObject under JBoss_Internal should fail");
         } catch (IllegalArgumentException iex)
         {
  @@ -64,7 +66,7 @@
   
         try
         {
  -         cache_.detach(InternalDelegate.JBOSS_INTERNAL.toString());
  +         cache_.detach(InternalConstant.JBOSS_INTERNAL.toString());
            fail("putObject under JBoss_Internal should fail");
         } catch (IllegalArgumentException iex)
         {
  
  
  



More information about the jboss-cvs-commits mailing list