gdamour     2005/03/02 06:43:20

  Modified:    modules/itests/src/itest/org/openejb/test/entity/cmp2
                        Cmp2TestSuite.java
  Log:

  GERONIMO-580
  
  o add an itests test verifying the correct behavior of the implementation.
  
  GERONIMO-598
  
  o add the flush-cache-before-query optional element, which identifies if
  the transactional cache should be flushed before the execution of the
  associated finder or select operation; and
  o update the various XValuedFinder and XValuedSelect in order to flush
  the transaction cache if required.
  
  Revision  Changes    Path
  1.2       +3 -1      
openejb/modules/itests/src/itest/org/openejb/test/entity/cmp2/Cmp2TestSuite.java
  
  Index: Cmp2TestSuite.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/itests/src/itest/org/openejb/test/entity/cmp2/Cmp2TestSuite.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Cmp2TestSuite.java        14 Oct 2004 19:47:28 -0000      1.1
  +++ Cmp2TestSuite.java        2 Mar 2005 11:43:19 -0000       1.2
  @@ -87,6 +87,7 @@
           
           /*[2] Create database table */
           TestManager.getDatabase().createEntityTable();
  +        TestManager.getDatabase().createEntityExplicitePKTable();
       }
   
       /**
  @@ -96,5 +97,6 @@
       protected void tearDown() throws Exception {
           /*[1] Drop database table */
           TestManager.getDatabase().dropEntityTable();
  +        TestManager.getDatabase().dropEntityExplicitePKTable();
       }
   }
  
  
  

Reply via email to