Methods Summary |
---|
public static void | main(java.lang.String[] args)
TestNSStack test = new TestNSStack("TestNSStack");
test.testNSStack1();
test.testNSStack2();
|
protected void | setUp()
AxisProperties.setProperty(AxisEngine.PROP_ENABLE_NAMESPACE_PREFIX_OPTIMIZATION,"false");
|
public static junit.framework.Test | suite()
return new TestSuite(TestNSStack.class);
|
protected void | tearDown()
AxisProperties.setProperty(AxisEngine.PROP_ENABLE_NAMESPACE_PREFIX_OPTIMIZATION,"true");
|
public void | testNSStack1()
String msg = prefix+m1+suffix;
StringReader strReader = new StringReader(msg);
DeserializationContext dser = new DeserializationContext(
new InputSource(strReader), null,
org.apache.axis.Message.REQUEST);
dser.parse();
org.apache.axis.message.SOAPEnvelope env = dser.getEnvelope();
String xml = env.toString();
boolean oldIgnore = XMLUnit.getIgnoreWhitespace();
XMLUnit.setIgnoreWhitespace(true);
try {
assertXMLIdentical("NSStack invalidated XML canonicalization",
new Diff(msg, xml), true);
} finally {
XMLUnit.setIgnoreWhitespace(oldIgnore);
}
|
public void | testNSStack2()
String msg = prefix+m2+suffix;
StringReader strReader = new StringReader(msg);
DeserializationContext dser = new DeserializationContext(
new InputSource(strReader), null,
org.apache.axis.Message.REQUEST);
dser.parse();
org.apache.axis.message.SOAPEnvelope env = dser.getEnvelope();
String xml = env.toString();
boolean oldIgnore = XMLUnit.getIgnoreWhitespace();
XMLUnit.setIgnoreWhitespace(true);
try {
assertXMLIdentical("NSStack invalidated XML canonicalization",
new Diff(msg, xml), true);
} finally {
XMLUnit.setIgnoreWhitespace(oldIgnore);
}
|