使用 Ant 构建器运行所有单元测试
我的项目中有一个目录,其中包含一堆 JUnit 测试。到目前为止,我已经为每个单元测试使用了单独的目标。例如:
<target name="MyTest">
<mkdir dir="${junit.output.dir}"/>
<junit fork="yes" printsummary="withOutAndErr">
<formatter type="xml"/>
<test name="tests.MyTest" todir="${junit.output.dir}"/>
<classpath refid="MyProject.classpath"/>
</junit>
</target>
此方法要求我每次添加单元测试时都更改构建文件。
我希望能够使用单个 Ant 构建器目标运行项目中的所有单元测试。
可以吗?
I have a directory with a bunch of JUnit tests in my project. So far I have used separate target for each unit test. For example:
<target name="MyTest">
<mkdir dir="${junit.output.dir}"/>
<junit fork="yes" printsummary="withOutAndErr">
<formatter type="xml"/>
<test name="tests.MyTest" todir="${junit.output.dir}"/>
<classpath refid="MyProject.classpath"/>
</junit>
</target>
This method requires me to change build file every time I add a Unit test.
I want to able able to to run all unit tests in the project with a single Ant builder target.
Is it possible to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您需要查看文件集标签,例如:
重要的部分是使用文件集和 glob/通配符模式来匹配测试的名称。有关 junit 任务的完整文档以及示例:
http://ant.apache.org/manual /Tasks/junit.html
Yep it is, you need to look at the fileset tag, e.g:
The important part is the use of fileset and a glob/wildcard pattern to match the names of the tests. Full docs on the junit task with examples here:
http://ant.apache.org/manual/Tasks/junit.html
是的!我们使用 ant 命令批量测试来完成此操作。看起来像这样:
谷歌一下,它应该可以帮你解决
Yep! We do it using an ant command batchtest. Looks like this:
Google it, it should sort you out