gdamour 2005/03/02 06:43:20
Modified: modules/itests/src/itest/org/openejb/test/stateful
StatefulJndiEncTests.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/stateful/StatefulJndiEncTests.java
Index: StatefulJndiEncTests.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/itests/src/itest/org/openejb/test/stateful/StatefulJndiEncTests.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- StatefulJndiEncTests.java 8 Sep 2004 07:20:14 -0000 1.1
+++ StatefulJndiEncTests.java 2 Mar 2005 11:43:20 -0000 1.2
@@ -67,6 +67,7 @@
/*[2] Create database table */
TestManager.getDatabase().createEntityTable();
+ TestManager.getDatabase().createEntityExplicitePKTable();
}
/**
@@ -77,6 +78,7 @@
try {
/*[1] Drop database table */
TestManager.getDatabase().dropEntityTable();
+ TestManager.getDatabase().dropEntityExplicitePKTable();
} catch (Exception e) {
throw e;
} finally {