如何只为多个 JUnit 测试准备一次状态
我需要测试一个程序,该程序首先预处理一些数据,然后使用这些预处理的数据计算几个不同的结果——为每个计算编写单独的测试是有意义的。
官方 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用注释 @BeforeClass 来注释之前将运行一次的方法所有测试方法。
Use the annotation @BeforeClass to annotate the method which will be run once before all test methods.