从单元测试中生成一个单独的进程
我有一些单元测试(是的,也许更多的集成测试!),我想启动另一个 JVM,然后从该“其他”JVM 运行测试代码(并等待它完成,收集结果) 。 我很感兴趣是否有一种简单/可靠的方法可以用 junit 做到这一点(例如继承所需的类路径等...)
任何想法表示赞赏。
I have some unit tests (yes, perhaps more integration-ey tests !) that I would like to spin up another jvm, and then run the test code from that "other" JVM (and wait for it to finish, collecting the results).
Am interested if there is an easy/reliable way of doing that with junit (eg inherit the classpath of what is needed etc...)
Any ideas appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通读 JUnit 工具 页面。 有各种形式支持系统测试、集成测试等的工具等条目。
Have a read through the JUnit Tools pages. There entries for tools etc that support system testing, integration testing, etc in various forms.
Ant 将为您执行此操作:
Ant will do this for you:
只是使用这个问题中解释的方法做了同样的事情: 执行单独进程中的 Java 应用程序
Just did that exact thing using the methods explained in this question: Executing a Java application in a separate process