1 16 package org.apache.axis2.om.impl.traverse; 17 18 import org.apache.axis2.om.OMConstants; 19 import org.apache.axis2.om.OMTestCase; 20 21 public class OMChildrenWithSpecificAttributeIteratorTest extends OMTestCase implements OMConstants { 22 private String sampleSOAPMessage = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:wsa=\"http://schemas.xmlsoap.org/ws/2004/03/addressing\">\n" + 23 " <soapenv:Header>\n" + 24 " <wsa:MessageID soapenv:mustUnderstand=\"1\">uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>\n" + 25 " <wsa:To soapenv:mustUnderstand=\"0\">http://localhost:8081/axis/services/BankPort</wsa:To>\n" + 26 " <wsa:From soapenv:mustUnderstand=\"1\">\n" + 27 " <Address xmlns=\"http://schemas.xmlsoap.org/ws/2004/03/addressing\">http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous</Address>\n" + 28 " </wsa:From>\n" + 29 " </soapenv:Header>\n" + 30 " <soapenv:Body>\n" + 31 " <axis2:echoVoid xmlns:axis2=\"http://ws.apache.org/axis2\" ></axis2:echoVoid>\n" + 32 " </soapenv:Body>\n" + 33 "</soapenv:Envelope>"; 34 35 public OMChildrenWithSpecificAttributeIteratorTest(String testName) { 36 super(testName); 37 } 38 39 public static void main(String [] args) { 40 junit.textui.TestRunner 41 .run(OMChildrenWithSpecificAttributeIteratorTest.class); 42 } 43 44 47 protected void setUp() throws Exception { 48 super.setUp(); 49 } 50 51 public void testChildrenRetrievalWithNoDetach() { 52 } 74 75 public void testChildrenRetrievalWithDetach() throws Exception { 76 94 } 95 96 97 } 98 | Popular Tags |