assertEquals("hello, world", s);
}
public void testShouldReturnTheOrginalStringFromXmlEscaped() throws Exception {
StringConverter sd = new StringConverter();
String s = (String)sd.unmarshal(TestUtils.createStreamReader("<string><>&HH</string>"), null);
assertEquals("<>&HH", s);
}
public void testCouldGetDate() throws Exception {
DateConverter dd = new DateConverter();