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