使用 TestNG 注释进行测试

发布于 2024-10-27 18:41:11 字数 156 浏览 2 评论 0原文

有人可以帮助我使用注释( org.testng.annotations.Test )测试 JAVA 类吗?我正在处理一个程序(由其他人编写),其中不使用 Junit 而是使用“org.testng.annotations.Test”。 testng.annotations.Test”的用法我不知道

Can some one please help me with the usage of testing a JAVA class using annotations ( org.testng.annotations.Test) ... I am dealing with a program (written by some1 else) in which Junit is not used instead "org.testng.annotations.Test" is used of which i have no idea

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

海之角 2024-11-03 18:41:11

您肯定会想在此处阅读 TestNG 的文档,因为它与 JUnit 存在一些差异。不过,有些注释是相似的。

以下是一些要点:

@BeforeSuite@BeforeClass@BeforeTest 标记将在测试套件、测试类之前运行的方法,以及分别在单独的测试方法之前(如您所料)。

@Test 将方法注释为测试方法。

这些与 JUnit 最相似。这些文档对其他文档有很好的解释。

You'll definitely want to read the documentation on TestNG here, as there are some differences from JUnit. Some of the annotations are similar, though.

Here are some highlights:

@BeforeSuite, @BeforeClass, @BeforeTest mark methods that will run before a test suite, before a test class, and before an individual test method, respectively (as you might expect).

@Test annotates a method as being a test method.

Those are the most similar to JUnit. The docs have a great explanation of the others.

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