You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ke...@apache.org on 2004/12/10 08:51:07 UTC

svn commit: r111482 - /incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java

Author: kentam
Date: Thu Dec  9 23:51:05 2004
New Revision: 111482

URL: http://svn.apache.org/viewcvs?view=rev&rev=111482
Log:
Reactivate the Database control check-in tests.

Contributor: Hoi Lam


Modified:
   incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java

Modified: incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java
Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java?view=diff&rev=111482&p1=incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java&r1=111481&p2=incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java&r2=111482
==============================================================================
--- incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java	(original)
+++ incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/jpf/database/TestDatabaseControl.java	Thu Dec  9 23:51:05 2004
@@ -57,66 +57,60 @@
     }
 
     /**
-     * Tests invoking a method inherited from the super control
-     * The sub control is instantiated programmatically
+     * Test selecting a list of employees into an array
      */
 	@Freq("checkin")
-    @Status("inactive")
+    @Status("active")
     public void testSelectEmployeesWithArray() throws Exception
     {
 		assertReport("/controlsWeb/database/testSelectEmployeesWithArray.do");
     }
 
     /**
-     * Tests invoking a method inherited from the super control
-     * The sub control is instantiated programmatically
+     * Test selecting a list of employees into an iterator
      */
 	@Freq("checkin")
-    @Status("inactive")
+    @Status("active")
     public void testSelectEmployeesWithIterator() throws Exception
     {
 		assertReport("/controlsWeb/database/testSelectEmployeesWithIterator.do");
     }
 
     /**
-     * Tests invoking a method inherited from the super control
-     * The sub control is instantiated programmatically
+     * Test selecting an employee object into a hashmap
      */
 	@Freq("checkin")
-    @Status("inactive")
+    @Status("active")
     public void testSelectEmployeeWithHashMap() throws Exception
     {
 		assertReport("/controlsWeb/database/testSelectEmployeeWithHashMap.do");
     }
 
     /**
-     * Tests invoking a method inherited from the super control
-     * The sub control is instantiated programmatically
+     * Test the max row property
      */
 	@Freq("checkin")
-    @Status("inactive")
+    @Status("active")
     public void testSelectOneEmployeeWithMaxRow() throws Exception
     {
 		assertReport("/controlsWeb/database/testSelectOneEmployeeWithMaxRow.do");
     }
 
     /**
-     * Tests invoking a method inherited from the super control
-     * The sub control is instantiated programmatically
+     * Test updating an employee record
      */
 	@Freq("checkin")
-    @Status("inactive")
+    @Status("active")
     public void testUpdateEmployee() throws Exception
     {
 		assertReport("/controlsWeb/database/testUpdateEmployee.do");
     }
 
     /**
-     * Tests invoking a method inherited from the super control
-     * The sub control is instantiated programmatically
+     * Test deleting an employee record
      */
 	@Freq("checkin")
-    @Status("inactive")
+    @Status("active")
     public void testDeleteEmployee() throws Exception
     {
 		assertReport("/controlsWeb/database/testDeleteEmployee.do");