/** Test for unmarshalling of simple elements.
*/
public void testUnmarshalSimpleElements() throws Exception {
JMUnmarshaller jmUnmarshaller = (JMUnmarshaller) getFactory().createUnmarshaller();
StringReader sr = new StringReader(getAllTypesElementString());
AllTypesElement result = (AllTypesElement) jmUnmarshaller.unmarshal(new InputSource(sr));
verifyAllSimpleTypesElement(result.getAllSimpleTypesElement());
}
/** Test for unmarshalling of complex elements.
*/