5253545556575859606162
int pos = sb.length(); sb.append("</pur:items></pur:purchaseOrder>"); String sExpected = sb.substring(0, pos) + sbContent.toString() + sb.substring(pos, sb.length()); assertEquals(sExpected, poDoc.xmlText()); try { poDoc.setPrice(10);
int pos = sb.length(); sb.append("</pur:items></pur:purchaseOrder>"); String sExpected = sb.subSequence(0, pos) + sbContent.toString() + sb.subSequence(pos, sb.length()); assertEquals(sExpected, poDoc.xmlText()); try { poDoc.setPrice(10);