@Test
public void testOccuringStruct2() throws Exception {
if (!shouldRunTest("OccuringStruct2")) {
return;
}
OccuringStruct2 x = new OccuringStruct2();
x.setVarFloat(1.14f);
List<Serializable> theList = x.getVarIntAndVarString();
theList.add(0);
theList.add("x1");
theList.add(1);
theList.add("x2");
OccuringStruct2 yOriginal = new OccuringStruct2();
yOriginal.setVarFloat(3.14f);
theList = yOriginal.getVarIntAndVarString();
theList.add(42);
theList.add("the answer");
theList.add(6);
theList.add("hammer");
theList.add(2);
theList.add("anvil");
Holder<OccuringStruct2> y = new Holder<OccuringStruct2>(yOriginal);
Holder<OccuringStruct2> z = new Holder<OccuringStruct2>();
OccuringStruct2 ret;
if (testDocLiteral) {
ret = docClient.testOccuringStruct2(x, y, z);
} else if (testXMLBinding) {
ret = xmlClient.testOccuringStruct2(x, y, z);
} else {