一起使用 JUnit 和 TestNG
您认为在一个项目中同时使用 JUnit 和 TestNG 是个好主意吗?我需要 TestNG 的一些功能,但我还需要 JUnit 特定的扩展,例如 DbUnit 和 XmlUnit。
如果我一起使用它们,您认为我应该将两个测试包树放在 Eclipse 项目中的同一个“test”文件夹中吗?
Do you think it's a good idea to use JUnit and TestNG together in one project? I need some features from TestNG, but I also need JUnit specific extensions, like DbUnit and XmlUnit.
And if I use them together, do you think I should put both test package trees in the same "test" folder in my Eclipse project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DBUnit 与 TestNG 配合得很好,但是,您可以同时运行 JUnit 3 和 TestNG 测试:您所需要做的就是将 JUnit 3 类放在标签中
常规中:
,并将所有其他 TestNG 类放在 有关更多详细信息,请参阅文档中的字符串“junit”。
DBUnit works fine with TestNG but nevertheless, you can run both JUnit 3 and TestNG tests at the same time: all you need to do is to put your JUnit 3 classes in a tag
and all your other TestNG classes in a regular:
Look for the string "junit" in the documentation for more details.
为什么不能将 DBUnit 与 TestNG 一起使用?据我所知,它没有任何特定于 TestNG 的内容。只需要在 TestNG 的 before test 和 afterTest 中定义导入即可。
如果 XMLUnit 不能用于类似的事情,我会感到惊讶。
Why can't you use DBUnit with TestNG? As far as I can tell, it doesn't have anything specific to TestNG. Just have to define the import in TestNG's before test, and afterTest.
I would be surprised if XMLUnit couldn't be used in a similar matter.