public void tearDown() {
}
public void testSerObjWithRefToSerObjectWithCustomReadObj() throws Exception {
ByteArrayOutputStream baos = new ByteArrayOutputStream(10240);
ByteOutput byteOutput = Marshalling.createByteOutput(baos);
marshaller.start(byteOutput);
ObjectThatContainsACustomReadObjectMethod obj = new ObjectThatContainsACustomReadObjectMethod();
obj.anObjectWithCustomReadObjectMethod = new CustomReadObjectMethod();
try {
marshaller.writeObject(obj);