}
Marshaller marshaller = createMarshaller();
marshaller.setProperty( Marshaller.JAXB_FORMATTED_OUTPUT, true );
AbstractJaxbCollection jaxbCollection = entry.getObject();
StringWriter out = new StringWriter();
marshaller.marshal( jaxbCollection, out );
AssertUtils.assertXMLEquals( new String( entry.getExpected() ), out.toString() );