gpt4 book ai didi

hudson - IntelliJ 使用单元测试生成 ant 构建?

转载 作者:行者123 更新时间:2023-12-02 02:28:45 24 4
gpt4 key购买 nike

如何获取 IntelliJ 生成的 ant 构建并合并我的项目的单元测试?我想将 Hudson 纳入我的开发过程。

最佳答案

编辑 build.xml 以包含 <junit><junitreport>任务。

<target name="junit-test" description="run all junit tests" depends="compile">
<!-- Debug output
<property name="test.class.path" refid="test.class.path"/>
<echo message="${test.class.path}"/>
-->
<junit printsummary="yes" haltonfailure="${haltonfailure}">
<classpath refid="test.class.path"/>
<formatter type="xml"/>
<batchtest fork="yes" todir="${junit.out}">
<fileset dir="${test.src}">
<include name="**/*Test.java"/>
</fileset>
</batchtest>
</junit>
<junitreport todir="${junit.out}">
<fileset dir="${junit.out}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${junit.out}" format="frames"/>
</junitreport>
</target>

关于hudson - IntelliJ 使用单元测试生成 ant 构建?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4701716/

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