[jboss-svn-commits] JBoss Portal SVN: r5513 - in trunk/common: . src/main/org/jboss/portal/common/junit

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Oct 30 08:49:03 EST 2006


Author: julien at jboss.com
Date: 2006-10-30 08:49:00 -0500 (Mon, 30 Oct 2006)
New Revision: 5513

Removed:
   trunk/common/src/main/org/jboss/portal/common/junit/ConfigurableTestCase.java
Modified:
   trunk/common/build.xml
Log:
remove unused class

Modified: trunk/common/build.xml
===================================================================
--- trunk/common/build.xml	2006-10-30 13:42:45 UTC (rev 5512)
+++ trunk/common/build.xml	2006-10-30 13:49:00 UTC (rev 5513)
@@ -199,11 +199,6 @@
          </x-sysproperty>
 -->
          <x-test>
-<!--
-            <zest todir="." name="org.jboss.portal.common.junit.ConfigurableTestCase">
-               <parameter name="blah" value="toto"/>
-            </zest>
--->
             <test todir="${test.reports}" name="org.jboss.portal.test.common.AbstractInvocationContextTestCase"/>
             <test todir="${test.reports}" name="org.jboss.portal.test.common.LocaleInfoTestCase"/>
             <test todir="${test.reports}" name="org.jboss.portal.test.common.ParentChildResourceBundleTestCase"/>

Deleted: trunk/common/src/main/org/jboss/portal/common/junit/ConfigurableTestCase.java
===================================================================
--- trunk/common/src/main/org/jboss/portal/common/junit/ConfigurableTestCase.java	2006-10-30 13:42:45 UTC (rev 5512)
+++ trunk/common/src/main/org/jboss/portal/common/junit/ConfigurableTestCase.java	2006-10-30 13:49:00 UTC (rev 5513)
@@ -1,70 +0,0 @@
-/******************************************************************************
- * JBoss, a division of Red Hat                                               *
- * Copyright 2006, Red Hat Middleware, LLC, and individual                    *
- * contributors as indicated by the @authors tag. See the                     *
- * copyright.txt in the distribution for a full listing of                    *
- * individual contributors.                                                   *
- *                                                                            *
- * This is free software; you can redistribute it and/or modify it            *
- * under the terms of the GNU Lesser General Public License as                *
- * published by the Free Software Foundation; either version 2.1 of           *
- * the License, or (at your option) any later version.                        *
- *                                                                            *
- * This software is distributed in the hope that it will be useful,           *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU           *
- * Lesser General Public License for more details.                            *
- *                                                                            *
- * You should have received a copy of the GNU Lesser General Public           *
- * License along with this software; if not, write to the Free                *
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA         *
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.                   *
- ******************************************************************************/
-package org.jboss.portal.common.junit;
-
-import junit.framework.TestCase;
-
-import java.util.Map;
-
-import org.jboss.portal.common.junit.ant.TestParameter;
-
-/**
- * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
- * @version $Revision: 1.1 $
- */
-public class ConfigurableTestCase extends TestCase
-{
-
-   /** . */
-   private Map parameters;
-
-   public ConfigurableTestCase()
-   {
-      try
-      {
-         parameters = TestParameter.readExternalParameters();
-      }
-      catch (Exception e)
-      {
-         e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
-      }
-   }
-
-   public ConfigurableTestCase(String name)
-   {
-      super(name);
-      try
-      {
-         parameters = TestParameter.readExternalParameters();
-      }
-      catch (Exception e)
-      {
-         e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
-      }
-   }
-
-   protected final Map getParameters()
-   {
-      return parameters;
-   }
-}




More information about the jboss-svn-commits mailing list