[jboss-cvs] JBossAS SVN: r67534 - in branches/JBPAPP_4_2_0_GA_CP/test: src/main/org/jboss/ant/taskdefs and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 27 23:15:28 EST 2007


Author: bstansberry at jboss.com
Date: 2007-11-27 23:15:27 -0500 (Tue, 27 Nov 2007)
New Revision: 67534

Added:
   branches/JBPAPP_4_2_0_GA_CP/test/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java
Modified:
   branches/JBPAPP_4_2_0_GA_CP/test/build.xml
Log:
[JBPAPP-295] Enable buddy replication tests

Modified: branches/JBPAPP_4_2_0_GA_CP/test/build.xml
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/test/build.xml	2007-11-28 03:38:20 UTC (rev 67533)
+++ branches/JBPAPP_4_2_0_GA_CP/test/build.xml	2007-11-28 04:15:27 UTC (rev 67534)
@@ -72,6 +72,7 @@
          <path refid="apache.log4j.classpath"/>
          <path refid="junit.junit.classpath"/>
          <path refid="apache.ant.classpath"/>
+         <path refid="apache.ant.junit.classpath"/>
       </path>
 
       <!-- ======= -->

Copied: branches/JBPAPP_4_2_0_GA_CP/test/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java (from rev 67533, branches/JBPAPP_4_2/test/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java)
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/test/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java	                        (rev 0)
+++ branches/JBPAPP_4_2_0_GA_CP/test/src/main/org/jboss/ant/taskdefs/XMLJUnitMultipleResultFormatter.java	2007-11-28 04:15:27 UTC (rev 67534)
@@ -0,0 +1,49 @@
+/*
+ * 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