&& (x.getVarInt() == y.getVarInt())
&& (x.getVarAttrString().equals(y.getVarAttrString()));
}
public void testRestrictedAllBaseAll() throws Exception {
RestrictedAllBaseAll x = new RestrictedAllBaseAll();
x.setVarFloat(3.14f);
x.setVarInt(42);
x.setVarAttrString("BaseAllAttr-x");
RestrictedAllBaseAll yOrig = new RestrictedAllBaseAll();
yOrig.setVarFloat(-9.14f);
yOrig.setVarInt(10);
yOrig.setVarAttrString("BaseAllAttr-y");
Holder<RestrictedAllBaseAll> y = new Holder<RestrictedAllBaseAll>(yOrig);
Holder<RestrictedAllBaseAll> z = new Holder<RestrictedAllBaseAll>();
RestrictedAllBaseAll ret;
if (testDocLiteral) {
ret = docClient.testRestrictedAllBaseAll(x, y, z);
} else if (testXMLBinding) {
ret = xmlClient.testRestrictedAllBaseAll(x, y, z);
} else {