[jboss-cvs] aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test ...

Kabir Khan kkhan at jboss.com
Wed Jul 19 14:22:16 EDT 2006


  User: kkhan   
  Date: 06/07/19 14:22:16

  Modified:    src/resources/tests/org/jboss/test/microcontainer/advisor/test      
                        MicrocontainerAdvisedIntroducedAdvisorTestCase.xml
                        MicrocontainerNotAdvisedProxyAdvisorConstructorTestCase.xml
                        MicrocontainerNotAdvisedProxyAdvisorOverloadedConstructorTestCase.xml
                        MicrocontainerNotAdvisedProxyAdvisorTestCase.xml
                        MicrocontainerAdvisedInstanceAdvisorTestCase.xml
                        MicrocontainerNotAdvisedIntroducedProxyAdvisorTestCase.xml
  Log:
  [JBMICROCONT-98] Make the annotation metadata more free format
  
  Revision  Changes    Path
  1.3       +1 -1      aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerAdvisedIntroducedAdvisorTestCase.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MicrocontainerAdvisedIntroducedAdvisorTestCase.xml
  ===================================================================
  RCS file: /cvsroot/jboss/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerAdvisedIntroducedAdvisorTestCase.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- MicrocontainerAdvisedIntroducedAdvisorTestCase.xml	3 May 2006 14:30:09 -0000	1.2
  +++ MicrocontainerAdvisedIntroducedAdvisorTestCase.xml	19 Jul 2006 18:22:15 -0000	1.3
  @@ -7,7 +7,7 @@
      </bean>
   
      <bean name="Test" class="org.jboss.test.microcontainer.advisor.test.TestObject">
  -      <annotation name="org.jboss.test.microcontainer.advisor.test.TestIntroductionAnnotation"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.TestIntroductionAnnotation</annotation>
      </bean>
   
   </deployment>
  
  
  
  1.2       +6 -6      aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedProxyAdvisorConstructorTestCase.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MicrocontainerNotAdvisedProxyAdvisorConstructorTestCase.xml
  ===================================================================
  RCS file: /cvsroot/jboss/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedProxyAdvisorConstructorTestCase.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- MicrocontainerNotAdvisedProxyAdvisorConstructorTestCase.xml	20 May 2006 11:28:34 -0000	1.1
  +++ MicrocontainerNotAdvisedProxyAdvisorConstructorTestCase.xml	19 Jul 2006 18:22:15 -0000	1.2
  @@ -7,16 +7,16 @@
      </bean>
   
   	<bean name="One" class="org.jboss.test.microcontainer.advisor.test.some.Pojo">
  -	   <annotation name="org.jboss.test.microcontainer.advisor.test.Singleton"/>
  +	   <annotation>@org.jboss.test.microcontainer.advisor.test.Singleton</annotation>
   	</bean>
   	
   	<bean name="Two" class="org.jboss.test.microcontainer.advisor.test.some.Pojo">
  -	   <annotation name="org.jboss.test.microcontainer.advisor.test.Singleton"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.Singleton</annotation>
   	</bean>
   	
   	<bean name="Three" class="org.jboss.test.microcontainer.advisor.test.some.Pojo"/>
   	
   	<bean name="Four" class="org.jboss.test.microcontainer.advisor.test.another.Pojo">
  -	   <annotation name="org.jboss.test.microcontainer.advisor.test.Singleton"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.Singleton</annotation>
   	</bean>
   </deployment>
  
  
  
  1.2       +4 -4      aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedProxyAdvisorOverloadedConstructorTestCase.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MicrocontainerNotAdvisedProxyAdvisorOverloadedConstructorTestCase.xml
  ===================================================================
  RCS file: /cvsroot/jboss/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedProxyAdvisorOverloadedConstructorTestCase.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- MicrocontainerNotAdvisedProxyAdvisorOverloadedConstructorTestCase.xml	22 May 2006 11:29:12 -0000	1.1
  +++ MicrocontainerNotAdvisedProxyAdvisorOverloadedConstructorTestCase.xml	19 Jul 2006 18:22:15 -0000	1.2
  @@ -7,7 +7,7 @@
      </bean>
   
   	<bean name="One" class="org.jboss.test.microcontainer.advisor.test.some.Pojo">
  -	   <annotation name="org.jboss.test.microcontainer.advisor.test.Singleton"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.Singleton</annotation>
   	   <constructor>
   	      <parameter>1</parameter>
   	      <parameter>One</parameter>
  @@ -15,7 +15,7 @@
   	</bean>
   	
   	<bean name="Two" class="org.jboss.test.microcontainer.advisor.test.some.Pojo">
  -	   <annotation name="org.jboss.test.microcontainer.advisor.test.Singleton"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.Singleton</annotation>
   	   <constructor>
   	      <parameter>9999</parameter>
   	      <parameter>Should be ignored since singleton aspect stops creation of new instance</parameter>
  
  
  
  1.3       +6 -6      aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedProxyAdvisorTestCase.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MicrocontainerNotAdvisedProxyAdvisorTestCase.xml
  ===================================================================
  RCS file: /cvsroot/jboss/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedProxyAdvisorTestCase.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- MicrocontainerNotAdvisedProxyAdvisorTestCase.xml	3 May 2006 14:30:09 -0000	1.2
  +++ MicrocontainerNotAdvisedProxyAdvisorTestCase.xml	19 Jul 2006 18:22:15 -0000	1.3
  @@ -24,7 +24,7 @@
      </bean>
               
      <bean name="Test" class="org.jboss.test.microcontainer.advisor.test.UnadvisedTest">
  -      <annotation name="org.jboss.test.microcontainer.advisor.test.TestAnnotation"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.TestAnnotation</annotation>
      </bean>
      
   </deployment>
  
  
  
  1.3       +7 -7      aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerAdvisedInstanceAdvisorTestCase.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MicrocontainerAdvisedInstanceAdvisorTestCase.xml
  ===================================================================
  RCS file: /cvsroot/jboss/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerAdvisedInstanceAdvisorTestCase.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- MicrocontainerAdvisedInstanceAdvisorTestCase.xml	3 May 2006 14:30:09 -0000	1.2
  +++ MicrocontainerAdvisedInstanceAdvisorTestCase.xml	19 Jul 2006 18:22:15 -0000	1.3
  @@ -24,7 +24,7 @@
      </bean>
               
      <bean name="Test" class="org.jboss.test.microcontainer.advisor.test.TestObject">
  -      <annotation name="org.jboss.test.microcontainer.advisor.test.TestAnnotation"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.TestAnnotation</annotation>
      </bean>
               
      <bean name="TestNoAnnotation" class="org.jboss.test.microcontainer.advisor.test.TestObject"/>
  
  
  
  1.3       +1 -1      aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedIntroducedProxyAdvisorTestCase.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MicrocontainerNotAdvisedIntroducedProxyAdvisorTestCase.xml
  ===================================================================
  RCS file: /cvsroot/jboss/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/advisor/test/MicrocontainerNotAdvisedIntroducedProxyAdvisorTestCase.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- MicrocontainerNotAdvisedIntroducedProxyAdvisorTestCase.xml	3 May 2006 14:30:09 -0000	1.2
  +++ MicrocontainerNotAdvisedIntroducedProxyAdvisorTestCase.xml	19 Jul 2006 18:22:15 -0000	1.3
  @@ -8,7 +8,7 @@
   
   
      <bean name="Test" class="org.jboss.test.microcontainer.advisor.test.TestObject">
  -      <annotation name="org.jboss.test.microcontainer.advisor.test.TestIntroductionAnnotation"/>
  +      <annotation>@org.jboss.test.microcontainer.advisor.test.TestIntroductionAnnotation</annotation>
      </bean>
   
   </deployment>
  
  
  



More information about the jboss-cvs-commits mailing list