view src/org/ssdt_ohio/tools/ant/junit-summary_1.xsl @ 3:af958c5027b1

add test junit summary xsl
author smith@nwoca.org
date Thu, 09 Jun 2011 11:57:09 -0400
parents
children bace8c04e066
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(falure)"/> error=<xsl:value-of select="count(error)"/>  
<xsl:text>    
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>