*/
public void testBinding40() throws Exception
{
IComponentSpecification spec = parseComponent("Binding40.jwc");
IContainedComponent cc = spec.getComponent("component");
IBindingSpecification bs = cc.getBinding("simple");
assertEquals(BindingType.PREFIXED, bs.getType());
assertEquals("message:some-key", bs.getValue());
bs = cc.getBinding("enclosed");
assertEquals(BindingType.PREFIXED, bs.getType());
assertEquals("ognl:zip.zap.zoop", bs.getValue());
}