如何只为多个 JUnit 测试准备一次状态

发布于 2024-10-10 23:46:54 字数 150 浏览 0 评论 0原文

我需要测试一个程序,该程序首先预处理一些数据,然后使用这些预处理的数据计算几个不同的结果——为每个计算编写单独的测试是有意义的。

官方 JUnit 政策似乎是我应该在每次计算测试之前运行预处理。 我如何设置我的测试,以便在运行其余测试之前只运行一次准备工作(速度很慢)?

I need to test a program that first preprocesses some data and then computes several different results using this preprocessed data -- it makes sense to write separate test for each computation.

Official JUnit policy seems to be that I should run preprocessing before each computation test.
How can I set up my test so that I could run the preparation only once (it's quite slow) before running remaining tests?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦一生花开无言 2024-10-17 23:46:54

使用注释 @BeforeClass 来注释之前将运行一次的方法所有测试方法。

Use the annotation @BeforeClass to annotate the method which will be run once before all test methods.

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