如何在 TestNG 中禁用整个单元测试?


TestNG 支持多种方法来忽略所有 @Test 的执行。如果需要,用户可以忽略整个测试而根本不执行它。TestNG 支持在以下级别忽略所有 @Test:-

  • 在一个类中

  • 在一个特定的包中

  • 在一个包及其所有子包中

用户必须在所需级别使用 **@Ignore** 注解来禁用测试。**@Ignore** 注解的优先级高于单个 @Test 注解。

要禁用类中的所有 @Test,只需在类名前键入 **@Ignore**。它将禁用类中存在的所有 @Test。

在这篇文章中,我们将说明如何在类中禁用整个测试。

解决此问题的方法/算法 -

  • **步骤 1** - 创建一个名为 **NewTestngClass** 的 TestNG 类。

  • **步骤 2** - 在类中编写两个不同的 @Test 方法,并将 **@Ignore** 注解放在类名前面,如编程代码部分所示。

  • **步骤 3** - 现在创建如下所示的 testNG.xml 来运行 TestNG 类。

  • **步骤 4** - 运行 testNG.xml 或直接在 IDE 中运行 TestNG 类,或者使用命令行编译并运行它。

示例

使用以下代码作为通用的 TestNG 类“**NewTestngClass**” -

src/ NewTestngClass.java

import org.testng.SkipException;
import org.testng.annotations.Test;
@Ignore
public class NewTestngClass {
   @Test(enabled=false)
   public void testcase1(){
      System.out.println("Testcase 1 - Not executed");
   }
   @Test
   public void testcase2(){
      System.out.println("Testcase 2 - skip exception example");
      throw new SkipException("Skipping this exception");
   }
   @Test
   public void testcase3(){
      boolean DataAvailable=false;
      System.out.println("Test Case3 - Conditional Skip");
      if(!DataAvailable)
         throw new SkipException("Skipping this exception");
      System.out.println("Executed Successfully");
   }
}

testNG.xml

这是一个配置文件,用于组织和运行 TestNG 测试用例。当需要执行有限的测试而不是完整套件时,它非常方便。

<?xml version = "1.0" encoding = "UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name = "Suite1">
   <test name = "test1">
      <classes>
         <class name = "NewTestngClass"/>
      </classes>
   </test>
</suite>

输出

===============================================
Suite1
Total tests run: 0, Passes: 0, Failures: 0, Skips: 0
===============================================

更新于: 2022年3月9日

2K+ 次查看

启动你的 职业生涯

通过完成课程获得认证

开始学习
广告