* Precondition:
* testCanUnitTestsDetectImproperCommitOfATransaction must PASS for this test result to be valid.
*/
public void testBeginTransactionWhenTransient()
{
Server server = (Server)m_context.getComponentInstance("Server.Generic");
Request req = new Request();
TransferObject tobj = new TransferObject();
tobj.setClassName("InvocationContextTest");
tobj.setEventName("create");
req.addInvocation(tobj);
req.setCommit(false);
// This should complete without throwing the err.runtime.transientCommit exception
server.invoke(req);
}