gdamour 2005/03/02 06:43:17
Modified: modules/itests/src/itest/org/openejb/test/entity/bmp
BmpTestSuite.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/bmp/BmpTestSuite.java
Index: BmpTestSuite.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/itests/src/itest/org/openejb/test/entity/bmp/BmpTestSuite.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BmpTestSuite.java 8 Sep 2004 07:20:12 -0000 1.1
+++ BmpTestSuite.java 2 Mar 2005 11:43:16 -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();
}
}