[webbeans-commits] Webbeans SVN: r3487 - tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/definition/bean/custom.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Thu Aug 13 17:37:29 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-08-13 17:37:28 -0400 (Thu, 13 Aug 2009)
New Revision: 3487

Modified:
   tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/definition/bean/custom/CustomBeanImplementationTest.java
Log:
ws

Modified: tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/definition/bean/custom/CustomBeanImplementationTest.java
===================================================================
--- tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/definition/bean/custom/CustomBeanImplementationTest.java	2009-08-13 21:32:35 UTC (rev 3486)
+++ tck/trunk/impl/src/main/java/org/jboss/jsr299/tck/tests/definition/bean/custom/CustomBeanImplementationTest.java	2009-08-13 21:37:28 UTC (rev 3487)
@@ -28,64 +28,70 @@
 // TODO declare injection point on Cat and verify remaining assertions
 public class CustomBeanImplementationTest extends AbstractJSR299Test
 {
-   
+
    @Test(groups = "ri-broken")
-   @SpecAssertions({
-      @SpecAssertion(section="5.1", id="b"),
-      @SpecAssertion(section="5.2", id="k")
-   })
-   //WBRI-328
-   public void testGetBeanClassCalled() {
+   @SpecAssertions( { @SpecAssertion(section = "5.1", id = "b"), @SpecAssertion(section = "5.2", id = "k") })
+   // WBRI-328
+   public void testGetBeanClassCalled()
+   {
       assert CatBean.bean.isGetBeanClassCalled();
    }
-   
-   @Test(groups={"ri-broken"})
-   @SpecAssertion(section="5.2", id="k")
-   //WBRI-328
-   public void testGetStereotypesCalled() {
+
+   @Test(groups = { "ri-broken" })
+   @SpecAssertion(section = "5.2", id = "k")
+   // WBRI-328
+   public void testGetStereotypesCalled()
+   {
       assert CatBean.bean.isGetStereotypesCalled();
    }
-   
+
    @Test
-   @SpecAssertion(section="5.2", id="k")
-   public void testIsPolicyCalled() {
+   @SpecAssertion(section = "5.2", id = "k")
+   public void testIsPolicyCalled()
+   {
       assert CatBean.bean.isPolicyCalled();
    }
-   
+
    @Test
-   @SpecAssertion(section="5.3", id="na")
-   public void testGetTypesCalled() {
+   @SpecAssertion(section = "5.3", id = "na")
+   public void testGetTypesCalled()
+   {
       assert CatBean.bean.isGetTypesCalled();
    }
-   
+
    @Test
-   @SpecAssertion(section="5.3", id="nb")
-   public void testGetBindingsCalled() {
+   @SpecAssertion(section = "5.3", id = "nb")
+   public void testGetBindingsCalled()
+   {
       assert CatBean.bean.isGetBindingsCalled();
    }
-   
+
    @Test
-   @SpecAssertion(section="5.3.1", id="b")
-   public void testGetInjectionPointsCalled() {
+   @SpecAssertion(section = "5.3.1", id = "b")
+   public void testGetInjectionPointsCalled()
+   {
       assert CatBean.bean.isGetInjectionPointsCalled();
    }
-   
-   @Test(groups={"ri-broken"})
-   @SpecAssertion(section="5.3.4", id="ba")
-   //WBRI-328
-   public void testIsNullableCalled() {
+
+   @Test(groups = { "ri-broken" })
+   @SpecAssertion(section = "5.3.4", id = "ba")
+   // WBRI-328
+   public void testIsNullableCalled()
+   {
       assert CatBean.bean.isNullableCalled();
    }
-   
+
    @Test
-   @SpecAssertion(section="5.4", id="e")
-   public void testGetNameCalled() {
+   @SpecAssertion(section = "5.4", id = "e")
+   public void testGetNameCalled()
+   {
       assert CatBean.bean.isGetNameCalled();
    }
-   
+
    @Test
-   @SpecAssertion(section="6.5.2", id="e")
-   public void testGetScopeTypeCalled() {
+   @SpecAssertion(section = "6.5.2", id = "e")
+   public void testGetScopeTypeCalled()
+   {
       assert CatBean.bean.isGetScopeTypeCalled();
    }
 }




More information about the weld-commits mailing list