Source src = new StringSource("<hello>world</hello>");
testSerializeDeserialize(src);
}
public void testSerializeDeserializeWithBytesSource() throws Exception {
Source src = new BytesSource("<hello>world</hello>".getBytes());
testSerializeDeserialize(src);
}