1 16 17 package org.apache.axis2.soap; 18 19 public class SOAPBodyTestCase extends SOAPTestCase { 20 protected SOAPBody soap11Body; 21 protected SOAPBody soap12Body; 22 23 protected SOAPBody soap11BodyWithParser; 24 protected SOAPBody soap12BodyWithParser; 25 26 public SOAPBodyTestCase(String testName) { 27 super(testName); 28 29 } 30 31 protected void setUp() throws Exception { 32 super.setUp(); 33 soap11Body = soap11Factory.createSOAPBody(soap11Envelope); 34 soap12Body = soap12Factory.createSOAPBody(soap12Envelope); 35 36 soap11BodyWithParser = soap11EnvelopeWithParser.getBody(); 37 soap12BodyWithParser = soap12EnvelopeWithParser.getBody(); 38 } 39 40 } 41 | Popular Tags |