<% def stats = com.athaydes.spockframework.report.util.Utils.aggregateStats( data ) %># Specification run results
Created on ${new Date()} by ${System.properties['user.name']}
Total | Passed | Failed | Feature failures | Feature errors | Success rate | Total time (ms) |
---|---|---|---|---|---|---|
${stats.total} | ${stats.passed} | ${stats.failed} | ${stats.fFails} | ${stats.fErrors} | ${stats.successRate} | ${stats.time} |
Name | Features | Failed | Errors | Skipped | Success rate | Time |
---|---|---|---|---|---|---|
<% data.each { name, map -> | ||||||
%> | $name | ${map.totalRuns} | ${map.failures} | ${map.errors} | ${map.skipped} | ${map.successRate} |
<% } | ||||||
%> |
Generated by Athaydes Spock Reports