@Test
public void testRecSeqB6918() throws Exception {
if (!shouldRunTest("RecSeqB6918")) {
return;
}
RecSeqB6918 x = new RecSeqB6918();
List<Object> theList = x.getNextSeqAndVarInt();
theList.add(new Integer(6));
theList.add(new RecSeqB6918());
theList.add(new Integer(42));
RecSeqB6918 yOrig = new RecSeqB6918();
theList = yOrig.getNextSeqAndVarInt();
theList.add(x);
theList.add(new Integer(2));
Holder<RecSeqB6918> y = new Holder<RecSeqB6918>(yOrig);
Holder<RecSeqB6918> z = new Holder<RecSeqB6918>();
RecSeqB6918 ret;
if (testDocLiteral) {
ret = docClient.testRecSeqB6918(x, y, z);
} else if (testXMLBinding) {
ret = xmlClient.testRecSeqB6918(x, y, z);
} else {