*/
public void testBinding31() throws Exception
{
IComponentSpecification spec = parseComponent("Binding31.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());
}