}
private void performTestNewSourceArray(StandardTypesServiceClient serviceClient) throws Exception {
String xml = "<a>A<b>B</b><c>C</c></a>";
Source[] srcs = new Source[3];
srcs[0] = new DOMSource(new String2Node().transform(xml, null));
srcs[1] = new SAXSource(new InputSource(new StringReader(xml)));
srcs[2] = new StreamSource(new StringReader(xml));
Source[] actual = serviceClient.getNewSourceArrayForward(srcs);
Source[] expected = new Source[srcs.length];