assertEquals("Text value mismatch", text, elem.getText());
}
public void testSerialize() {
OMDOMFactory factory = new OMDOMFactory();
String localName = "TestLocalName";
String namespace = "http://ws.apache.org/axis2/ns";
String prefix = "axis2";
String tempText = "The quick brown fox jumps over the lazy dog";
String textToAppend = " followed by another";
OMElement elem = factory.createOMElement(localName, namespace, prefix);
OMText textNode = factory.createOMText(elem, tempText);
((Text) textNode).appendData(textToAppend);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try {
elem.serialize(baos);