@Test
public void testPoolSizeConfiguration() throws Exception {
XsltTransformFactory factory = new XsltTransformFactory();
SwitchYardModel switchyard = new ModelPuller<SwitchYardModel>().pull(
"xslt-config-06.xml", getClass());
XsltTransformModel model = (XsltTransformModel)
switchyard.getTransforms().getTransforms().get(0);
int maxSize = factory.getTransformPoolSize(model);
Assert.assertEquals(123, maxSize);
}