You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2006/08/25 23:39:24 UTC

svn commit: r436965 - in /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites: Client.java Embedded.java

Author: djd
Date: Fri Aug 25 14:39:24 2006
New Revision: 436965

URL: http://svn.apache.org/viewvc?rev=436965&view=rev
Log:
DERBY-1555 (partial) Embedded and Client need to be public classes to run as JUnit tests.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Client.java
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Embedded.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Client.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Client.java?rev=436965&r1=436964&r2=436965&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Client.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Client.java Fri Aug 25 14:39:24 2006
@@ -37,7 +37,7 @@
  * <LI> suites.AllPackages
  * </UL>
  */
-class Client extends BaseTestCase {
+public class Client extends BaseTestCase {
     /**
      * Use suite method instead.
      */

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Embedded.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Embedded.java?rev=436965&r1=436964&r2=436965&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Embedded.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/Embedded.java Fri Aug 25 14:39:24 2006
@@ -33,7 +33,7 @@
  * <LI> suites.AllPackages
  * </UL>
  */
-class Embedded extends BaseTestCase {
+public class Embedded extends BaseTestCase {
     /**
      * Use suite method instead.
      */