[jboss-cvs] JBossAS SVN: r64933 - branches/Branch_4_2/testsuite/src/main/org/jboss/ant/taskdefs.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 28 17:57:39 EDT 2007


Author: bstansberry at jboss.com
Date: 2007-08-28 17:57:38 -0400 (Tue, 28 Aug 2007)
New Revision: 64933

Removed:
   branches/Branch_4_2/testsuite/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java
Log:
[JBAS-4641] Move XMLJUnitMultipleResultFormatter from testsuite module to test module

Deleted: branches/Branch_4_2/testsuite/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java
===================================================================
--- branches/Branch_4_2/testsuite/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java	2007-08-28 21:55:49 UTC (rev 64932)
+++ branches/Branch_4_2/testsuite/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java	2007-08-28 21:57:38 UTC (rev 64933)
@@ -1,49 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.ant.taskdefs;
-
-
-import org.apache.tools.ant.taskdefs.optional.junit.JUnitTest;
-import org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter;
-
-/**
- * This class only serves the proposite of keep multiple JUnit runnings between different configurations.
- * For example, if you run a testcase as cluster, and the same testcase as singlenode, we want to keep both results in the JUnitReport.
- * This is a simple implementation that uses a variable defined jboss-configuration and put that as part of the name.
- * @author Clebert Suconic
- */
-public class XMLJUnitMultipleResultFormatter extends XMLJUnitResultFormatter 
-{
-	
-    public void startTestSuite(JUnitTest test) 
-    { 
-        String configuration = (String)System.getProperties().get("jboss-junit-configuration");
-    	
-    	if (configuration!=null && !configuration.trim().equals("")) 
-        {
-                test.setName(test.getName() + "(" + configuration + ")");
-        }
-
-        super.startTestSuite(test);    	
-    }
-
-}




More information about the jboss-cvs-commits mailing list