从 ant 脚本执行 java 类文件
我需要从 ant 脚本运行一个 java 类(实际上是一个测试用例)。可以这样做吗?
I need to run a java class (actually a test case) from ant script. Is it possible to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在最基本的级别上,您可以使用 ant
java
执行此操作的任务。但是你用 junit4 标记 - 你不能使用 ant
junit
< /a> 任务?At the most basic level you could use the ant
java
task to do this.But you tagged with junit4 - can you not use the ant
junit
task?要执行java类,您可以使用java任务 http://ant.apache.org/manual /Tasks/java.html
执行 junit 测试用例: http://ant .apache.org/manual/tasksoverview.html#testing
To execute java class, you can use java task http://ant.apache.org/manual/Tasks/java.html
To execute junit test cases: http://ant.apache.org/manual/tasksoverview.html#testing
尝试 java 任务。如果你想运行测试,你可能想看看 JUnit
Try the java task. If you want to run tests, you might want to take a look at JUnit