@SpecVersion(spec = "cdi", version = "20091101")
public class DecoratorAndInterceptorTest extends AbstractTest {
@Deployment
public static WebArchive createTestArchive() {
return new WebArchiveBuilder()
.withTestClassPackage(DecoratorAndInterceptorTest.class)
.withBeansXml(
Descriptors.create(BeansDescriptor.class).createInterceptors()
.clazz(FooInterceptor1.class.getName(), FooInterceptor2.class.getName()).up()
.createDecorators().clazz(FooDecorator1.class.getName(), FooDecorator2.class.getName()).up())