/** Test for marshalling of simple elements.
*/
public void testMarshalSimpleElements() throws Exception {
StringWriter sw = new StringWriter();
AllTypesElement element = getAllTypesElement();
Marshaller m = getFactory().createMarshaller();
m.setProperty(JMMarshallerImpl.JAXME_XML_DECLARATION, Boolean.FALSE);
m.marshal(element, sw);
String expected = getAllTypesElementString();
String got = sw.toString();