一起使用 JUnit 和 TestNG

发布于 2024-10-21 23:40:57 字数 160 浏览 2 评论 0原文

您认为在一个项目中同时使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

做个ˇ局外人 2024-10-28 23:40:57

DBUnit 与 TestNG 配合得很好,但是,您可以同时运行 JUnit 3 和 TestNG 测试:您所需要做的就是将 JUnit 3 类放在标签中

<test junit="true">
</test>

常规中:

<test>
</test>

,并将所有其他 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

<test junit="true">
</test>

and all your other TestNG classes in a regular:

<test>
</test>

Look for the string "junit" in the documentation for more details.

万劫不复 2024-10-28 23:40:57

为什么不能将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文