[jboss-cvs] JBossAS SVN: r58486 - projects/test/trunk/test/src/main/org/jboss/test

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Nov 16 23:03:23 EST 2006


Author: scott.stark at jboss.org
Date: 2006-11-16 23:03:21 -0500 (Thu, 16 Nov 2006)
New Revision: 58486

Modified:
   projects/test/trunk/test/src/main/org/jboss/test/JBossTestCase.java
Log:
Need to invoker super.setUp/tearDown from the JBossTestSetup inner class

Modified: projects/test/trunk/test/src/main/org/jboss/test/JBossTestCase.java
===================================================================
--- projects/test/trunk/test/src/main/org/jboss/test/JBossTestCase.java	2006-11-17 03:43:50 UTC (rev 58485)
+++ projects/test/trunk/test/src/main/org/jboss/test/JBossTestCase.java	2006-11-17 04:03:21 UTC (rev 58486)
@@ -269,6 +269,7 @@
       {
          protected void setUp() throws Exception
          {
+            super.setUp();
             deploymentException = null;
             try
             {
@@ -313,6 +314,7 @@
 
             if (this.delegate.isSecure())
                this.delegate.logout();
+            super.tearDown();
          }
       };
       return wrapper;




More information about the jboss-cvs-commits mailing list