JUnit 3 有类似 @BeforeClass 的东西吗?
我被迫将 JUnit 3 用于特定的测试套件。我知道 setUp()
和 tearDown()
提供 @Before
和 @After
的功能,但是有吗类似于 @BeforeClass
和 @AfterClass
的事情应该在测试开始之前发生一次,以及在所有测试运行之后发生一次?
I'm forced to use JUnit 3 for a particular test suite. I understand setUp()
and tearDown()
serve the function of @Before
and @After
, but is there an analogue of @BeforeClass
and @AfterClass
for things that should happen once before the tests start, and once after all tests are run?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我应该更好地搜索。
junit 3 中的类拆卸?
OK, I should have searched SO better.
Class teardown in junit 3?
不,这是 JUnit4 中的新功能。
No, this is a new feature in JUnit4.