* method. As per the agreement between OpenEJB and the Web Service Provider
* the MessageContex should have been passed into the container.invoke method
* and the container should then ensure it's available via the SessionContext
* for the duration of this call.
*/
MessageContext messageContext = ctx.getMessageContext();
junit.framework.Assert.assertNotNull("message context should not be null", messageContext);
junit.framework.Assert.assertTrue("the Web Service Provider's message context should be used", messageContext instanceof FakeMessageContext);
calls.add(Call.Bean_Invoke_BEFORE);