Assert.assertEquals("ServiceImpl1", s);
Set<Class<?>> apiTyeps = new HashSet<Class<?>>();
apiTyeps.add(IService.class);
List<Decorator> decs = getManager().resolveDecorators(apiTyeps, new Annotation[] { new Binding1Literal() });
ServiceDecorator dec = (ServiceDecorator) getManager().getInstance(decs.get(0));
Assert.assertEquals("ServiceImpl1", dec.getDelegateAttr());
}