view src/org/ssdt_ohio/tools/ant/junit-summary_1.xsl @ 6:c989b9aa8820

USASR-644: Add ant task to replace existing ant targets
author smith@nwoca.org
date Wed, 12 Oct 2011 12:59:32 -0400
parents bace8c04e066
children
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?>

<!--
    Document   : junit-summary.xsl
    Created on : June 9, 2011, 7:22 PM
    Author     : smith
    Description:
        Purpose of transformation follows.
-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:for-each select="//testcase">
<xsl:value-of select="@classname"/>.<xsl:value-of select="@name"/> failure=<xsl:value-of select="count(failure)"/> error=<xsl:value-of select="count(error)"/>  
<xsl:text>    
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>