public void testXSLTProcessor() throws Exception {
SynapseMessage sm = new Axis2SynapseMessage(
Axis2EnvSetup.axis2Deployment("target/synapse-repository"));
XSLTProcessor pro = new XSLTProcessor();
pro.setXSLInputStream(new ByteArrayInputStream(xsl.getBytes()));
pro.setIsBody(true);
boolean result = pro.process(null, sm);
assertTrue(result);
}