从单元测试中生成一个单独的进程

发布于 2024-08-01 15:50:54 字数 148 浏览 4 评论 0原文

我有一些单元测试(是的,也许更多的集成测试!),我想启动另一个 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 技术交流群。

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

发布评论

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

评论(3

痴梦一场 2024-08-08 15:50:54

通读 JUnit 工具 页面。 有各种形式支持系统测试、集成测试等的工具等条目。

Have a read through the JUnit Tools pages. There entries for tools etc that support system testing, integration testing, etc in various forms.

薯片软お妹 2024-08-08 15:50:54

Ant 将为您执行此操作

<junit fork="yes">
    <jvmarg value="-Djava.compiler=NONE"/>
    ...
</junit>

Ant will do this for you:

<junit fork="yes">
    <jvmarg value="-Djava.compiler=NONE"/>
    ...
</junit>
沧桑㈠ 2024-08-08 15:50:54

只是使用这个问题中解释的方法做了同样的事情: 执行单独进程中的 Java 应用程序

Just did that exact thing using the methods explained in this question: Executing a Java application in a separate process

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