通过ant脚本运行junit时在控制台上获取输出

发布于 2024-09-28 21:00:09 字数 727 浏览 3 评论 0原文

我正在使用 ant 脚本并运行 junit,我面临的问题是我无法在控制台上获取输出,而是在日志文件中获取输出。

我怎样才能做到这一点.. 我正在使用以下脚本。

<target name="validate_mapping" description="Testing the Hibernate ">

    <path id="validator.classpath">
        <fileset dir="${basedir}\lib">
            <include name="Junit-Temp-Test.jar" />
        </fileset>
    </path>

    <junit printsummary="yes">
        <formatter type="plain"/>
        <test name="com.ofss.fc.junit.test.SampleTest" />
        <classpath>
            <path refid="validator.classpath" />
            <path refid="lib.ext.classpath" />
        </classpath>
    </junit>    
</target>

I am using ant script and running a junit, the problem I am facing is that I am unable to get the output on console, rather I get the output in a log file.

how can I achieve that..
I am using the following script.

<target name="validate_mapping" description="Testing the Hibernate ">

    <path id="validator.classpath">
        <fileset dir="${basedir}\lib">
            <include name="Junit-Temp-Test.jar" />
        </fileset>
    </path>

    <junit printsummary="yes">
        <formatter type="plain"/>
        <test name="com.ofss.fc.junit.test.SampleTest" />
        <classpath>
            <path refid="validator.classpath" />
            <path refid="lib.ext.classpath" />
        </classpath>
    </junit>    
</target>

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

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

发布评论

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

评论(1

你的心境我的脸 2024-10-05 21:00:09

我认为您需要指定“usefile”属性

I think you need to specify "usefile" attribute <formatter usefile="false" type="plain"/>

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