Commit 04bcf13d authored by Markus Kauppila's avatar Markus Kauppila

Added count of skipped tests to default xsl style.

parent 1ba2041d
...@@ -181,7 +181,7 @@ div, h1 { ...@@ -181,7 +181,7 @@ div, h1 {
<span class="title">Statistics:</span><br/> <span class="title">Statistics:</span><br/>
<div class="statistics"> <div class="statistics">
<span>Executed </span> <xsl:value-of select="testlog/numSuites"/> test suites. <br/> <span>Executed </span> <xsl:value-of select="testlog/numSuites"/> test suites. <br/>
<span>Tests in total: </span> <xsl:value-of select="testlog/numTests"/> (passed: <xsl:value-of select="testlog/numPassedTests"/>, failed: <xsl:value-of select="testlog/numFailedTests"/>) <span>Tests in total: </span> <xsl:value-of select="testlog/numTests"/> (passed: <xsl:value-of select="testlog/numPassedTests"/>, failed: <xsl:value-of select="testlog/numFailedTests"/>, skipped: <xsl:value-of select="testlog/numSkippedTests"/>)
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment