int finalRows = bean.countRows();
assertTrue("Initial rows: " + initialRows + ", Final rows: " + finalRows, finalRows - initialRows == 0);
//Test without client transaction - the insert fails because the bean delegates to another
//bean with a transaction strategy of Mandatory, and no transaction is available
initialRows = bean.countRows();
try {
bean.insertRow("testWithoutClientTran", 1, true);
fail("IllegalStateException not thrown");
} catch (IllegalStateException e) {