view src/org/ssdt_ohio/tools/ant/junit-summary_1.xsl @ 7:418ba4cfc553 tip

USASR-644: preserve dependencies in replaced target
author smith@nwoca.org
date Wed, 12 Oct 2011 18:12:17 -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>