NIHVIVO-1129 Add the detailed report XSL stylesheet.

This commit is contained in:
jeb228 2011-01-10 21:17:22 +00:00
parent 547cc14fb0
commit ffa4d7f0d5
2 changed files with 402 additions and 1 deletions

View file

@ -147,7 +147,7 @@ report - Just summarize output from previously run tests.
<property name="summariser.name" value="summary" />
<property name="summariser.out" value="true" />
<property name="summariser.log" value="true" />
<property name="summariser.interval" value="5" />
<property name="summariser.interval" value="10" />
</jmeter>
</target>
@ -168,5 +168,17 @@ report - Just summarize output from previously run tests.
<arg value="-xsl" />
<arg value="${report.style}" />
</java>
<property name="report2.out" location="${results.dir}/${test.name}-detail.html" />
<property name="report2.style" location="${basedir}/jmeter-results-detail-report.xsl" />
<java classname="org.apache.xalan.xslt.Process" classpathref="xslt.classpath">
<arg value="-in" />
<arg value="${report.in}" />
<arg value="-out" />
<arg value="${report2.out}" />
<arg value="-xsl" />
<arg value="${report2.style}" />
</java>
</target>
</project>