binding.value4 = new Binding.Value4("val4");
StringWriter writer = new StringWriter();
XercesXsMarshaller marshaller = new XercesXsMarshaller();
marshaller.setProperty(Marshaller.PROP_OUTPUT_INDENTATION, "false");
String file = getPath("xml/jbxb/characters/schema1.xsd").getFile();
marshaller.marshal(new FileReader(file), new MappingObjectModelProvider(), binding, writer);
String xml = writer.getBuffer().toString();
assertEquals(XML_VALUE4, xml);
}
public void testValue4MarshallingSunday() throws Exception