[weld-commits] Weld SVN: r4630 - cdi-tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/interceptors/definition/custom.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Tue Nov 3 14:41:30 EST 2009


Author: marius.bogoevici
Date: 2009-11-03 14:41:30 -0500 (Tue, 03 Nov 2009)
New Revision: 4630

Modified:
   cdi-tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/interceptors/definition/custom/CustomInterceptorTest.java
Log:
WELD-238: Enable tests.

Modified: cdi-tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/interceptors/definition/custom/CustomInterceptorTest.java
===================================================================
--- cdi-tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/interceptors/definition/custom/CustomInterceptorTest.java	2009-11-03 19:39:16 UTC (rev 4629)
+++ cdi-tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/interceptors/definition/custom/CustomInterceptorTest.java	2009-11-03 19:41:30 UTC (rev 4630)
@@ -34,7 +34,7 @@
 @BeansXml("beans.xml")
 public class CustomInterceptorTest extends AbstractJSR299Test
 {
-   @Test(groups = "ri-broken")
+   @Test
    @SpecAssertion(section = "9.5", id = "fa")
    // WELD-238
    public void testCustomPostConstructInterceptor()
@@ -44,7 +44,7 @@
       assert AfterBeanDiscoveryObserver.POST_CONSTRUCT_INTERCEPTOR.isInterceptsCalled();
    }
    
-   @Test(groups = "ri-broken")
+   @Test
    @SpecAssertion(section = "9.5", id = "fb")
    // WELD-238
    public void testCustomPreDestroyInterceptor()
@@ -54,7 +54,7 @@
       assert AfterBeanDiscoveryObserver.PRE_DESTROY_INTERCEPTOR.isInterceptsCalled();
    }
    
-   @Test(groups = "ri-broken")
+   @Test
    @SpecAssertion(section = "9.5", id = "fc")
    // WELD-238
    public void testCustomPostActivateInterceptor()
@@ -64,7 +64,7 @@
       assert AfterBeanDiscoveryObserver.POST_ACTIVATE_INTERCEPTOR.isInterceptsCalled();
    }
    
-   @Test(groups = "ri-broken")
+   @Test
    @SpecAssertion(section = "9.5", id = "fd")
    // WELD-238
    public void testCustomPrePassivateInterceptor()
@@ -74,7 +74,7 @@
       assert AfterBeanDiscoveryObserver.PRE_PASSIVATE_INTERCEPTOR.isInterceptsCalled();
    }
    
-   @Test(groups = "ri-broken")
+   @Test
    @SpecAssertion(section = "9.5", id = "fe")
    // WELD-238
    public void testCustomAroundInvokeInterceptor()
@@ -84,7 +84,7 @@
       assert AfterBeanDiscoveryObserver.AROUND_INVOKE_INTERCEPTOR.isInterceptsCalled();
    }
    
-   @Test(groups = "ri-broken")
+   @Test
    @SpecAssertion(section = "9.5", id = "ff")
    // WELD-238
    public void testCustomAroundTimeoutInterceptor()



More information about the weld-commits mailing list