[weld-commits] Weld SVN: r5206 - core/trunk/tests/src/test/java/org/jboss/weld/tests/beanManager/annotation.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Thu Dec 3 11:14:33 EST 2009


Author: pete.muir at jboss.org
Date: 2009-12-03 11:14:32 -0500 (Thu, 03 Dec 2009)
New Revision: 5206

Modified:
   core/trunk/tests/src/test/java/org/jboss/weld/tests/beanManager/annotation/ManagerAnnotationTest.java
Log:
Add issue

Modified: core/trunk/tests/src/test/java/org/jboss/weld/tests/beanManager/annotation/ManagerAnnotationTest.java
===================================================================
--- core/trunk/tests/src/test/java/org/jboss/weld/tests/beanManager/annotation/ManagerAnnotationTest.java	2009-12-03 16:12:19 UTC (rev 5205)
+++ core/trunk/tests/src/test/java/org/jboss/weld/tests/beanManager/annotation/ManagerAnnotationTest.java	2009-12-03 16:14:32 UTC (rev 5206)
@@ -10,37 +10,37 @@
 public class ManagerAnnotationTest extends AbstractWeldTest
 {
    
-   @Test
+   @Test(description="WELD-299")
    public void testIsQualifier() throws Exception
    {
       assert !getCurrentManager().isQualifier(PersistenceContext.class);
    }
    
-   @Test
+   @Test(description="WELD-299")
    public void testIsInterceptorBinding() throws Exception
    {
       assert !getCurrentManager().isInterceptorBinding(PersistenceContext.class);
    }
    
-   @Test
+   @Test(description="WELD-299")
    public void testIsNormalScope() throws Exception
    {
       assert !getCurrentManager().isNormalScope(PersistenceContext.class);
    }
    
-   @Test
+   @Test(description="WELD-299")
    public void testIsPassivatingScope() throws Exception
    {
       assert !getCurrentManager().isPassivatingScope(PersistenceContext.class);
    }
    
-   @Test
+   @Test(description="WELD-299")
    public void testIsScope() throws Exception
    {
       assert !getCurrentManager().isScope(PersistenceContext.class);
    }
    
-   @Test
+   @Test(description="WELD-299")
    public void testIsStereotype() throws Exception
    {
       assert !getCurrentManager().isStereotype(PersistenceContext.class);



More information about the weld-commits mailing list