gpt4 book ai didi

ant - ANT 为 JUNIT 编写的 HTML 报告

转载 作者:行者123 更新时间:2023-12-04 20:15:43 26 4
gpt4 key购买 nike

当测试失败时,如何使用 Ant 从 JUnit 生成 HTML 报告?

报告在没有故障时生成。

另外,我们如何为报告生成定义我们自己的 XSLT?

build.xml

<?xml version="1.0" encoding="UTF-8"?>
<project name="Ant Example" default="all" basedir=".">
<property name="project_name" value="junitSamples" />
<property name="src" location="src" />
<property name="build" location="build/classes" />
<property name="lib" location="lib" />
<property name="reports" location="reports" />

<target name="init" depends="clean">
<mkdir dir="${build}" />
<mkdir dir="${lib}" />
<mkdir dir="${reports}" />
<mkdir dir="${reports}/raw/" />
<mkdir dir="${reports}/html/" />
</target>

<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}" description="compile the source code ">
<classpath>
<fileset dir="lib">
<include name="**/*.jar" />
</fileset>
</classpath>
</javac>
</target>

<target name="clean">
<delete dir="build" />
<delete dir="${reports}" />
</target>

<target name="run-tests" depends="compile">
<junit printsummary="yes" haltonfailure="yes" showoutput="yes">
<classpath>
<pathelement path="${build}" />
<fileset dir="lib">
<include name="**/*.jar" />
</fileset>
</classpath>

<batchtest fork="yes" todir="${reports}/raw/">
<formatter type="xml" />
<fileset dir="${src}">
<include name="**/*Test*.java" />
</fileset>
</batchtest>
</junit>
</target>

<target name="test" depends="run-tests">
<junitreport todir="${reports}">
<fileset dir="${reports}/raw/">
<include name="TEST-*.xml" />
</fileset>
<report format="noframes" todir="${reports}\html\" />
</junitreport>
</target>

<target name="all" depends="clean, test" />
</project>

最佳答案

要指定您自己的样式表,请使用 "styledir"属性:

<report styledir="${resources}/junit" format="..." todir="..." />

如前所述,您必须使用 "junit-noframes.xsl"样式表名称。

JUnit report docs .

关于ant - ANT 为 JUNIT 编写的 HTML 报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12952019/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com