diff options
author | Jiri Vanek <[email protected]> | 2012-05-02 12:53:07 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2012-05-02 12:53:07 +0200 |
commit | e4c39211e39e630a47d0394a69529f9dbcd4d37c (patch) | |
tree | 55e09f2b03d452970581038923bd30c83bc0980e /tests/report-styles | |
parent | c2a298870319ea43a406a068dab2f6afc02bef90 (diff) |
Added bug annotation forr testing engine
Diffstat (limited to 'tests/report-styles')
-rw-r--r-- | tests/report-styles/jreport.xsl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/report-styles/jreport.xsl b/tests/report-styles/jreport.xsl index c3025af..5ac9841 100644 --- a/tests/report-styles/jreport.xsl +++ b/tests/report-styles/jreport.xsl @@ -102,6 +102,12 @@ exception statement from your version. </xsl:attribute><xsl:value-of select="@name"/> (<xsl:value-of select="@time"/>ms): </a> + <xsl:for-each select="bugs/bug"> + <a> + <xsl:attribute name="href"><xsl:value-of select="normalize-space(.)"/></xsl:attribute> + <xsl:value-of select="@visibleName"/> + </a>; + </xsl:for-each> </div> <blockquote> <div class="tablee"> @@ -166,6 +172,13 @@ exception statement from your version. <xsl:text disable-output-escaping="no"> - </xsl:text> <div class="method"> <xsl:value-of select="@name"/> + <xsl:for-each select="bugs/bug"> + <xsl:text disable-output-escaping="no"> - </xsl:text> + <a> + <xsl:attribute name="href"><xsl:value-of select="normalize-space(.)"/></xsl:attribute> + <xsl:value-of select="@visibleName"/> + </a> + </xsl:for-each> </div> </div> <div class="result"> |