blob: 94f4b43f9e42430156d2812b1a1b59816c4929ed [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.axiom.soap.impl.llom.soap11;
import org.apache.axiom.om.OMTestCase;
import org.apache.axiom.soap.SOAPEnvelope;
import org.apache.axiom.soap.impl.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);
}
}