public void runTest(String value, String expected) throws XMLStreamException, FactoryConfigurationError, IOException {
SOAPFactory factory = OMAbstractFactory.getSOAP12Factory();
SOAPEnvelope envelope = factory.getDefaultEnvelope();
String ns = "http://testuri.org";
OMNamespace namespace = factory.createOMNamespace(ns,"tst");
String ln = "Child";
OMElement bodyChild = factory.createOMElement(ln,namespace);
bodyChild.addChild(factory.createText(value));