如何添加不从 TestCase 扩展到 TestSuite 的 JUnit 4 测试?
在 JUnit 3 中,我只是简单地调用了
suite.addTestSuite( MyTest.class )
“但是,如果 MyTest 是一个不扩展 TestCase 的 JUnit 4 测试,那么这是行不通的”。 我应该做什么来创建一套测试?
In JUnit 3 I simply called
suite.addTestSuite( MyTest.class )
However if MyTest is a JUnit 4 test which does not extend TestCase this doesn't work. What should I do instead to create a suite of tests?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于那些拥有大量需要与新 v4 样式共存的 3.8 样式套件/测试的人,您可以执行以下操作:
For those with a large set of 3.8 style suites/tests that need to coexist with the new v4 style you can do the following:
我自己找到了答案:这里
像这样:
Found the answer myself: here
Like so: