@Test
public void testSimpleContent3() throws Exception {
if (!shouldRunTest("SimpleContent3")) {
return;
}
SimpleContent3 x3 = new SimpleContent3();
x3.setValue("foo");
x3.setAttrib1A(new Byte((byte)1));
x3.setAttrib1B(new Short((short)2));
x3.setAttrib2A(new Integer(5));
x3.setAttrib2B(new Long(6));
x3.setAttrib3A("xxx");
x3.setAttrib3B(Boolean.TRUE);
SimpleContent3 y3 = new SimpleContent3();
y3.setValue("bar");
y3.setAttrib1A(new Byte((byte)3));
y3.setAttrib1B(new Short((short)4));
y3.setAttrib2A(new Integer(7));
y3.setAttrib2B(new Long(8));
y3.setAttrib3A("yyy");
y3.setAttrib3B(Boolean.FALSE);
Holder<SimpleContent3> y3Holder = new Holder<SimpleContent3>(y3);
Holder<SimpleContent3> z3 = new Holder<SimpleContent3>();
SimpleContent3 ret;
if (testDocLiteral) {
ret = docClient.testSimpleContent3(x3, y3Holder, z3);
} else if (testXMLBinding) {
ret = xmlClient.testSimpleContent3(x3, y3Holder, z3);
} else {