Author: jsong
Date: Mon Aug 16 17:04:50 2004
New Revision: 36482

Modified:
   incubator/beehive/trunk/controls/test/build.xml
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/contextevent/LifeCycleTest.java
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/extension/SubControlTest.java
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientAccessTest.java
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientImplTest.java
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ImplAccessTest.java
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/extension/TestSubControl.java
   
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/instantiate/TestInstantiate.java
Log:
Update mantis tag from "detail" to "detailsed".


Modified: incubator/beehive/trunk/controls/test/build.xml
==============================================================================
--- incubator/beehive/trunk/controls/test/build.xml     (original)
+++ incubator/beehive/trunk/controls/test/build.xml     Mon Aug 16 17:04:50 2004
@@ -212,16 +212,17 @@
   <property name="mantis.bingen.dir" location="${basedir}/mantis-bingen"/>
   <property name="mantis.log.dir" location="${basedir}/mantis-logs"/>
   <path id="mantis.classpath">
-       <pathelement path="${tchschema.jar}"/>
-       <pathelement path="${mantis.jar}"/>
-       <pathelement path="${mantis.xbean.jar}"/>
+       <pathelement path="${mantis.tools.jar}"/>
        <pathelement path="${ant.jar}"/>
        <pathelement path="${junit.jar}"/>
-       <pathelement path="${mantis.tools.jar}"/>
-       <pathelement path="${build.beans}"/>
+       <pathelement path="${servlet24.jar}"/>
        <pathelement path="${milton.jar}"/>
+       <pathelement path="${tchschema.jar}"/>
+       <pathelement path="${mantis.jar}"/>
+       <pathelement path="${mantis.xbean.jar}"/>
        <pathelement path="../build/jars/controls.jar"/>
-       <pathelement path="${servlet24.jar}"/>
+       <pathelement path="${build.beans}"/>
+               <pathelement path="${build.tests.driver}"/>
   </path>
   <property name="mantis.run.classpath" refid="mantis.classpath"/>
 

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/contextevent/LifeCycleTest.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/contextevent/LifeCycleTest.java
       (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/contextevent/LifeCycleTest.java
       Mon Aug 16 17:04:50 2004
@@ -52,7 +52,7 @@
     /**
      * Tests listening to control's lifecycle events by registering a listener
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testRecordFromBeanInstance() throws Exception
     {

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/extension/SubControlTest.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/extension/SubControlTest.java
 (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/extension/SubControlTest.java
 Mon Aug 16 17:04:50 2004
@@ -56,7 +56,7 @@
     /**
      * Tests invoking a method declared on the subcontrol
      */
-       @Freq("detail")
+       @Freq("detailed")
     public void testExtendedMethod() throws Exception
     {
                Assert.assertNotNull(subcontrol);
@@ -69,7 +69,7 @@
      * Tests invoking a method declared on the subcontrol
      * The subcontrol is instantiated programmically
      */
-       @Freq("detail")
+       @Freq("detailed")
     public void testExtendedMethod2() throws Exception
     {
                SubControlBean 
sub=(SubControlBean)java.beans.Beans.instantiate( 
Thread.currentThread().getContextClassLoader() ,
@@ -85,7 +85,7 @@
      * The property is retrieved via control context.
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGettingInheritedPropertyByContext() throws Exception
     {
                Assert.assertNotNull(subcontrol);
@@ -99,7 +99,7 @@
      * The property is retrieved via control context.
      * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGettingInheritedPropertyByContext2() throws Exception
     {
                SubControlBean 
sub=(SubControlBean)java.beans.Beans.instantiate( 
Thread.currentThread().getContextClassLoader() ,
@@ -117,7 +117,7 @@
      * The property is retrieved via getter.
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGettingInheritedPropertyByGetter() throws Exception
     {
@@ -134,7 +134,7 @@
      * The property is retrieved via getter.
      * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGettingInheritedPropertyByGetter2() throws Exception
     {
@@ -153,7 +153,7 @@
      * The property is retrieved via getter.
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testSettingInheritedPropertyBySetter() throws Exception
     {
@@ -169,7 +169,7 @@
      * The property is retrieved via getter.
      * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testSettingInheritedPropertyBySetter2() throws Exception
     {
@@ -188,7 +188,7 @@
      * but reconfigured on sub control interface).
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGetReconfiguredPropertyByGetter() throws Exception
     {
@@ -203,7 +203,7 @@
      * but reconfigured on sub control interface).
      * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGetReconfiguredPropertyByGetter2() throws Exception
     {
@@ -220,7 +220,7 @@
      * Tests setting the reconfigured and inherited property using bean setter
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testSetReconfiguredPropertyBySetter() throws Exception
     {
@@ -234,7 +234,7 @@
         * Tests setting the reconfigured and inherited property using bean 
setter
         * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testSetReconfiguredPropertyBySetter2() throws Exception
     {
@@ -255,7 +255,7 @@
      * The reset property is retrieve by context.
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetReconfiguredPropertyByContext() throws Exception
     {
                Assert.assertNotNull(subcontrol);
@@ -270,7 +270,7 @@
      * The reset property is retrieve by context.
      * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetReconfiguredPropertyByContext2() throws Exception
     {
                SubControlBean 
sub=(SubControlBean)java.beans.Beans.instantiate( 
Thread.currentThread().getContextClassLoader() ,
@@ -297,7 +297,7 @@
      * The value is retrieved by getter on subcontrol bean
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGetExtendedPropertyByGetter() throws Exception
     {
@@ -312,7 +312,7 @@
         * The value is retrieved by getter on the subcontrol bean.
      * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGetExtendedPropertyByGetter2() throws Exception
     {
@@ -331,7 +331,7 @@
      * The value is retrieved by control context.
      * The subcontrol is instantiated declaratively.
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGetExtendedPropertyByContext() throws Exception
     {
@@ -344,7 +344,7 @@
      * The property is retrieved by control context.
      * The subcontrol is instantiated programmatically.
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testGetExtendedPropertyByContext2() throws Exception
     {
@@ -357,7 +357,7 @@
      * The value is changed by setter on subcontrol bean
      * The subcontrol is instantiated declaratively
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testSetExtendedPropertyBySetter() throws Exception
     {
@@ -372,7 +372,7 @@
         * The value is changed by setter on the subcontrol bean.
      * The subcontrol is instantiated programmatically
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testSetExtendedPropertyBySetter2() throws Exception
     {
@@ -389,7 +389,7 @@
     /**
      * Invokes a method overwritten by subcontrol
      */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testOverwrittenMethod() throws Exception
     {

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java
      (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java
      Mon Aug 16 17:04:50 2004
@@ -65,7 +65,7 @@
      * Tests declaratively instantiating a custom control with propertySet
      */
 
-       @Freq("detail")
+       @Freq("detailed")
     public void testDeclareWithProperty() throws Exception
     {
                Assert.assertNotNull(myPropertyBean);
@@ -75,7 +75,7 @@
        /**
         * Tests programmically instantiating a custom control with propertySet
         */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testProgrammWithProperty() throws Exception
     {

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientAccessTest.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientAccessTest.java
        (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientAccessTest.java
        Mon Aug 16 17:04:50 2004
@@ -15,7 +15,7 @@
 /**
  * Test accessing control's propertySet by control bean's getter/setter
  */
[EMAIL PROTECTED]("detail")
[EMAIL PROTECTED]("detailed")
 @Status("inactive")
 public class ClientAccessTest extends TestCase
 {

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientImplTest.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientImplTest.java
  (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ClientImplTest.java
  Mon Aug 16 17:04:50 2004
@@ -16,7 +16,7 @@
 /**
  * A TestCase that tests accessing control's propertySet by both impl and 
client
  */
[EMAIL PROTECTED]("detail")
[EMAIL PROTECTED]("detailed")
 @Status("inactive")
 public class ClientImplTest extends TestCase
 {

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ImplAccessTest.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ImplAccessTest.java
  (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/property/ImplAccessTest.java
  Mon Aug 16 17:04:50 2004
@@ -15,7 +15,7 @@
 /**
  * A TestCase that tests accessing property values via control context in 
control impl
  */
[EMAIL PROTECTED]("detail")
[EMAIL PROTECTED]("detailed")
 public class ImplAccessTest extends TestCase
 {
     public ImplAccessTest( String s ) { super( s ); }

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/extension/TestSubControl.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/extension/TestSubControl.java
  (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/extension/TestSubControl.java
  Mon Aug 16 17:04:50 2004
@@ -34,7 +34,7 @@
      * implementation class.
      */
 
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetInheritedPropertyByContext() throws Exception
     {
                
assertReport("/controlsWeb/extension/testGetInheritedPropertyByContext.do");
@@ -43,7 +43,7 @@
        /**
      * Tests getting an inherited property by getter on sub control bean class.
         */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetInheritedPropertyByGetter() throws Exception
     {
                
assertReport("/controlsWeb/extension/testGetInheritedPropertyByGetter.do");
@@ -52,7 +52,7 @@
        /**
      * Tests setting an inherited property by setter on sub control bean class.
         */
-       @Freq("detail")
+       @Freq("detailed")
     public void testSetInheritedPropertyBySetter() throws Exception
     {
                
assertReport("/controlsWeb/extension/testSetInheritedPropertyBySetter.do");
@@ -63,7 +63,7 @@
      * This test verifies the reconfigured property is assigned to a new value
      * when retrieved from control context on the subcontrol implementation 
class.
         */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetReconfiguredPropertyByContext() throws Exception
     {
                
assertReport("/controlsWeb/extension/testGetReconfiguredPropertyByContext.do");
@@ -74,7 +74,7 @@
      * This test verifies the reconfigured property is assigned to a new value
      * when retrieved from getter method on sub control bean class.
         */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetReconfiguredPropertyByGetter() throws Exception
     {
                
assertReport("/controlsWeb/extension/testGetReconfiguredPropertyByGetter.do");
@@ -85,7 +85,7 @@
      * This test tries to set the reconfigured property to a new value using
      * the setter method on sub control bean class.
         */
-       @Freq("detail")
+       @Freq("detailed")
     public void testSetReconfiguredPropertyBySetter() throws Exception
     {
                
assertReport("/controlsWeb/extension/testSetReconfiguredPropertyBySetter.do");
@@ -96,7 +96,7 @@
      * implementation class.
      */
 
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetExtendedPropertyByContext() throws Exception
     {
                
assertReport("/controlsWeb/extension/testGetExtendedPropertyByContext.do");
@@ -105,7 +105,7 @@
        /**
      * Tests getting an extended property by getter on sub control bean class.
         */
-       @Freq("detail")
+       @Freq("detailed")
     public void testGetExtendedPropertyByGetter() throws Exception
     {
                
assertReport("/controlsWeb/extension/testGetExtendedPropertyByGetter.do");
@@ -114,7 +114,7 @@
        /**
      * Tests setting an extended property by setter on sub control bean class.
         */
-       @Freq("detail")
+       @Freq("detailed")
     public void testSetExtendedPropertyBySetter() throws Exception
     {
                
assertReport("/controlsWeb/extension/testSetExtendedPropertyBySetter.do");
@@ -123,7 +123,7 @@
        /**
      * Tests invoking a method that is overwritten by subcontrol.
         */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testOverwrittenMethod() throws Exception
     {

Modified: 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/instantiate/TestInstantiate.java
==============================================================================
--- 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/instantiate/TestInstantiate.java
       (original)
+++ 
incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/instantiate/TestInstantiate.java
       Mon Aug 16 17:04:50 2004
@@ -34,7 +34,7 @@
      * Tests declaratively instantiating a custom control with propertySet
      */
 
-       @Freq("detail")
+       @Freq("detailed")
     public void testDeclareWithProperty() throws Exception
     {
                
assertReport("/controlsWeb/instantiate/declarewithproperty/Controller.jpf");
@@ -43,7 +43,7 @@
        /**
         * Tests programmically instantiating a custom control with propertySet
         */
-       @Freq("detail")
+       @Freq("detailed")
        @Status("inactive")
     public void testProgrammWithProperty() throws Exception
     {

Reply via email to