blob: 0b70a19630766381ec59698f1d7ab0e7395ed4d0 [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ws.commons.soap.impl.llom.soap11;
import org.apache.ws.commons.om.OMTestCase;
import org.apache.ws.commons.soap.SOAPEnvelope;
import org.apache.ws.commons.soap.impl.llom.builder.StAXSOAPModelBuilder;
import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamWriter;
public class SOAP11SerializerTest extends OMTestCase {
public SOAP11SerializerTest(String testName) {
super(testName);
}
protected StAXSOAPModelBuilder getOMBuilder(String fileName) throws Exception {
return super.getOMBuilder(fileName);
}
protected void setUp() throws Exception {
super.setUp();
soapEnvelope =
(SOAPEnvelope) getOMBuilder("soap/soap11/soap11fault.xml")
.getDocumentElement();
}
public void testSerialize() throws Exception {
XMLStreamWriter output = XMLOutputFactory.newInstance().
createXMLStreamWriter(System.out);
soapEnvelope.serialize(output);
output = XMLOutputFactory.newInstance().
createXMLStreamWriter(System.out);
soapEnvelope.serializeAndConsume(output);
}
}