@Test
public void testOccuringChoice1() throws Exception {
if (!shouldRunTest("OccuringChoice1")) {
return;
}
OccuringChoice1 x = new OccuringChoice1();
@SuppressWarnings("rawtypes")
List<Comparable> theList = x.getVarFloatOrVarInt();
theList.add(0);
theList.add(new Float(1.14f));
theList.add(1);
theList.add(new Float(11.14f));
// leave y empty
OccuringChoice1 yOriginal = new OccuringChoice1();
Holder<OccuringChoice1> y = new Holder<OccuringChoice1>(yOriginal);
Holder<OccuringChoice1> z = new Holder<OccuringChoice1>();
OccuringChoice1 ret;
if (testDocLiteral) {
ret = docClient.testOccuringChoice1(x, y, z);
} else if (testXMLBinding) {
ret = xmlClient.testOccuringChoice1(x, y, z);
} else {