@Test
public void testChoiceOfSeq() throws Exception {
if (!shouldRunTest("ChoiceOfSeq")) {
return;
}
ChoiceOfSeq x = new ChoiceOfSeq();
x.setVarInt(123);
x.setVarFloat(3.14f);
ChoiceOfSeq yOrig = new ChoiceOfSeq();
yOrig.setVarOtherInt(456);
yOrig.setVarString("y456");
Holder<ChoiceOfSeq> y = new Holder<ChoiceOfSeq>(yOrig);
Holder<ChoiceOfSeq> z = new Holder<ChoiceOfSeq>();
ChoiceOfSeq ret;
if (testDocLiteral) {
ret = docClient.testChoiceOfSeq(x, y, z);
} else if (testXMLBinding) {
ret = xmlClient.testChoiceOfSeq(x, y, z);
} else {