//Test without client transaction - an exception is thrown because the bean is not
//configured correctly, i.e. multiple transaction elements match to the same method
//name.
try {
bean.insertRow("testWithoutClientTran", 1);
fail("IllegalStateException not thrown");
} catch (IllegalStateException e) {
e.printStackTrace();
}
}