使用 TestNG

发布于 2024-10-20 13:08:26 字数 79 浏览 0 评论 0原文

我正在自动化测试环境中担任实习生。 我必须了解 TestNG 和 TestNG 的一些示例。测试套件是什么意思?有人可以给我提供一些示例编码吗?

I am working as a trainee in Automated Testing Environment.
I have to know about TestNG and some examples of TestNG. What is meant by Test Suite? Can anybody please provide me some example coding?

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

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

发布评论

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

评论(3

蓝天 2024-10-27 13:08:26

为什么不从源头开始呢?其网站上的 TestNG 文档

http://testng.org/doc/documentation-main.html

Why not start at the source? The TestNG documentation on their site

http://testng.org/doc/documentation-main.html

够运 2024-10-27 13:08:26

在 TestNG 中,suite 是分组测试的最高级别。它由单个 XML 文件 定义。它可以包含 test 构造(与您将实现的特定测试不同)、groupsclassesmethods >。要更好地了解所有这些元素如何相关,请查看 5 - 测试方法、测试类和测试< /a> 文档的组部分。要了解 testng.xml 中如何定义 ,请查看 此文件的 DTD

下面请找到一些建议,可以帮助您更好地理解 TestNG 和单元测试:

  1. 当然,从 开始TestNG 网站的文档部分。他们提供了一些 Java 代码示例。
  2. 如果您可以找到下一代 Java 测试 这本书,这将是继续学习的好资源。还有 Java 中讨论的功能的插图。
  3. 您需要了解测试基础知识,了解 TestNG 如何使用它们:
  4. 查看其他一些单元测试框架和教程。最简单的是 JUnit,这是大多数 TestNG 的来源(至少根据 )。

In TestNG suite is the highest level of grouping tests. It is defined by the single XML file. It can include test constructs (which are different from specific tests you will implement), groups, classes, and methods. To understand better how all these elements are related look into 5 - Test methods, Test classes and Test groups section of documentation. To understand how <suite> is defined in testng.xml, check out DTD for this file.

Below please find some recommendations that can help you better understand TestNG and unit testing in general:

  1. Definitely, start at the documentation section of TestNG website. They provide some code samples in Java.
  2. If you can get hold of the book Next Generation Java Testing, this would be a good resource to continue. Also have illustrations of discussed functionality in Java.
  3. You need to understand testing fundamentals, to see how TestNG uses them:
  4. Look at some other unit tests frameworks and tutorials. The simplest would be JUnit, which is where most of TestNG came from (at least according to the book).
凤舞天涯 2024-10-27 13:08:26

测试套件是测试用例的驱动类。如果你有很多具有多种测试方法的测试用例类,测试套件类或suite.xml可以一一调用每个测试类。

Test suite is the driving class of test cases. if you have many testcase classes with the multiple test methods, test suite class or suite.xml can call each of the test class one by one.

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