assertEquals(msg, x.getAttrib2B(), y.getAttrib2B());
equals(msg, (SimpleContent1)x, (SimpleContent1)y);
}
@Test
public void testSimpleContent2() throws Exception {
SimpleContent2 x2 = new SimpleContent2();
x2.setValue("foo");
x2.setAttrib1A(new Byte((byte)1));
x2.setAttrib1B(new Short((short)2));
x2.setAttrib2A(new Integer(5));
x2.setAttrib2B(new Long(6));
SimpleContent2 y2 = new SimpleContent2();
y2.setValue("bar");
y2.setAttrib1A(new Byte((byte)3));
y2.setAttrib1B(new Short((short)4));
y2.setAttrib2A(new Integer(7));
y2.setAttrib2B(new Long(8));
Holder<SimpleContent2> y2Holder = new Holder<SimpleContent2>(y2);
Holder<SimpleContent2> z2 = new Holder<SimpleContent2>();
SimpleContent2 ret;
if (testDocLiteral) {
ret = docClient.testSimpleContent2(x2, y2Holder, z2);
} else if (testXMLBinding) {
ret = xmlClient.testSimpleContent2(x2, y2Holder, z2);
} else {