如何使用 Teamcity 配置 java junit?
有人可以告诉我如何将 java JUnit 与 TeamCity 集成吗?
Can somebody please tell me how to integrate java JUnit with TeamCity?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在运行 TeamCity 的 Ant 脚本中使用 jUnit 任务。
You can use the jUnit task in your Ant script that you have TeamCity run.
当前的 Teamcity 版本不提供单独的 JUnit 构建步骤。
我猜这是因为测试类路径确定问题。
您可以使用 ant junit 任务 显式提供类路径。
或者 Teamcity 可以从 IDEA 或 IPR 项目。这两个链接解释了如何在编译构建步骤中运行 junit 测试。
Current Teamcity version doesn't provide separate JUnit build step.
I guess it's because of test classpath determination problem.
You may provide classpath explicitly with ant junit task.
Or Teamcity can fetch test classpath from IDEA or IPR project. These two links explain how to run junit tests as part of compile build step.