Since the threading and execution of EJBs are totally under the control of the container there is no simple way to get around this.
I can not think of anything other than introducing a Thread.sleep() with an arbitrary delay before asserting that the record has been inserted. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, May 24, 2004 12:37 PM To: [EMAIL PROTECTED] Subject: Testing MDB I have a message bean which creates a set of data in the database after parsing the xml . In the setUp() the message is sent to this MDB. And in the testXXX() I test to see if the records are properly created and in the tearDown() those records created are deleted, so that the test data in the xml is reusable. The problem is that when the testXXX() are being executed the MDB's method might not have been done with the creation and so the test fails, while the MDB did not fail at all. Is there any suggested approach to test this MDB? Reading the archive/ documentation also did not help on how to code the above scenario. Is this kind of testing possible or am I way off? Also, is there any documentation on how to use the JMSRedirector? Thanks Jayaraman --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
