view src/org/ssdt_ohio/tools/ant/junit-summary_1.xsl @ 5:de1522a9d4bc

Ignore missing target in adddependency
author smith@nwoca.org
date Mon, 08 Aug 2011 13:38:54 -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>