Element message = doc.getRootElement();
String text = message.getStringValue();
assertEquals("String value incorrect", "This should work", text.trim());
String xpathText = (String) doc
.selectObject("normalize-space(/message)");
assertEquals("xpath value incorrect", "This should work", xpathText);
}
public void testBug894878() {