如何在 JUnit 4 中动态添加测试到测试套件?
我最近阅读了(链接文本)关于一种方法将测试静态添加到 JUnit 4 中的测试套件中?动态方式怎么样,即如果测试类的名称不早于运行时已知,例如从 XML 文件读取其名称,如何添加测试类?
I recently read (link text) about a way to statically add tests to test suite in JUnit 4? What about a dynamic way, i.e. how to add a test class if its name is known not earlier than at run-time, e.g. its name is read from XML file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道该怎么做。我可以使用 JUnitExt 库 (http://junitext.sourceforge.net)。它支持“声明性测试配置(由 TestNG 提供)”。请参阅 junitext.sourceforge.net/tutorial.html(如何使用 XML 参数化测试)。
I know how to do it. I can use JUnitExt library (http://junitext.sourceforge.net). It supports "declarative test configurations (as provided by TestNG)". See junitext.sourceforge.net/tutorial.html (How to parameterize tests using XML).
我不知道如何添加到现有套件,但您可以在运行时创建自己的套件。 JUnitCore 类允许您传入要运行的类的列表。这些可以从您喜欢的任何地方读取,包括 XML。
I don't know of a way to add to an existing suite, but you can create your own suite at runtime. The JUnitCore class lets you pass in a list of classes you want run. These can be read in from anywhere you like including XML.