public void testTranslateWithNonBMPChars2() throws JaxenException
{
XPath xpath = new DOMXPath( "translate('abc', 'c', '\uD834\uDD00b')" );
String result = (String) xpath.evaluate( doc );
assertEquals("ab\uD834\uDD00", result);
}
public void testTranslateWithMalformedSurrogatePair() throws JaxenException