}
public void testSimpleMarshallingSunday() throws Exception
{
SchemaBinding schema = XsdBinder.bind(new StringReader(XSD), null);
MarshallerImpl marshaller = new MarshallerImpl();
marshaller.setProperty(Marshaller.PROP_OUTPUT_INDENTATION, "false");
StringWriter writer = new StringWriter();
marshaller.marshal(schema, null, GLOBAL_SIMPLE, writer);
String marshalled = writer.getBuffer().toString();
assertXmlEqual(XML_SIMPLE, marshalled);
}