Ant 为 java 项目构建带有 junit 测试的文件

发布于 2024-12-11 07:53:45 字数 1846 浏览 0 评论 0原文

我正在尝试编写一个 android 构建文件来编译、创建一个 jar 执行它并运行一堆测试文件。这是我到目前为止所拥有的,但不确定如何继续编写测试块。我环顾四周,但是一个带有 junit 测试的构建文件的示例,但没有找到任何..带有 junit 的 ant 文件的示例会很有帮助

<property name="src.dir"     value="src"/>
<property name="build.dir"   value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir"     value="${build.dir}/jar"/>
<property name="test.dir"    value="${build.dir}/test"/>
<property name="main-class"  value="com.arkangelx.classes.ATMLauncher"/>
<property name="TALK" value="true" />



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

<target name="compile">
    <mkdir dir="${classes.dir}"/>

    <javac srcdir="${src.dir}" destdir="${classes.dir}"   verbose="${TALK}"/>
</target>

<target name="jar" depends="compile">
    <mkdir dir="${jar.dir}"/>
    <jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
        <manifest>
            <attribute name="Main-Class" value="${main-class}"/>
        </manifest>
    </jar>
</target>


<target name="test" depends="run">
    <mkdir dir="${test.dir}"/>
    <test destfile="${test.dir}/${ant.project.name}.test" basedir="${build.dir}">
        <junit>
              <classpath refid="classpath.test" />
              <formatter type="brief" usefile="false" />
              <test name="TestExample" />
            </junit>
        </test>
    </target>


<target name="run" depends="jar">
    <java jar="${jar.dir}/${ant.project.name}.jar" fork="true"/>
</target>

<target name="clean-build" depends="clean,jar"/>

<target name="main" depends="clean,run"/>

I am trying to write an android build file that compiles, creates a jar executes it and also runs a bunch of test files. This is what I have so far, but not sure how to proceed with writing the test block. I have looked around but an example of a build file with junit testing but haven't found any..an example of a ant file with junit would be helpful please

<property name="src.dir"     value="src"/>
<property name="build.dir"   value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir"     value="${build.dir}/jar"/>
<property name="test.dir"    value="${build.dir}/test"/>
<property name="main-class"  value="com.arkangelx.classes.ATMLauncher"/>
<property name="TALK" value="true" />



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

<target name="compile">
    <mkdir dir="${classes.dir}"/>

    <javac srcdir="${src.dir}" destdir="${classes.dir}"   verbose="${TALK}"/>
</target>

<target name="jar" depends="compile">
    <mkdir dir="${jar.dir}"/>
    <jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
        <manifest>
            <attribute name="Main-Class" value="${main-class}"/>
        </manifest>
    </jar>
</target>


<target name="test" depends="run">
    <mkdir dir="${test.dir}"/>
    <test destfile="${test.dir}/${ant.project.name}.test" basedir="${build.dir}">
        <junit>
              <classpath refid="classpath.test" />
              <formatter type="brief" usefile="false" />
              <test name="TestExample" />
            </junit>
        </test>
    </target>


<target name="run" depends="jar">
    <java jar="${jar.dir}/${ant.project.name}.jar" fork="true"/>
</target>

<target name="clean-build" depends="clean,jar"/>

<target name="main" depends="clean,run"/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不回头走下去 2024-12-18 07:53:45

test 元素必须是 junit 任务的子元素。 (令人惊讶的是)junit 任务的文档中提供了几个示例。

The test element must be a sub-element of the junit task. There are several exemples available in (surprinsingly) the documentation of the junit task.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文