如何使用 TestNG SkipException?


TestNG 支持多种方法来跳过或忽略 @Test 的执行。根据需要,用户可以完全跳过测试而不执行它,或者根据特定条件跳过测试。如果在执行时满足条件,它将跳过测试中剩余的代码。

以下是跳过 @Test 执行的方法:

  • 在 @Test 中使用参数 enabled=false。默认情况下,此参数设置为 True。

  • 使用 throw new SkipException(String message) 跳过测试。

  • 条件跳过 - 用户可以进行条件检查。如果满足条件,它将抛出 SkipException 并跳过其余代码。

在本文中,我们将说明如何使用以上 3 种方法在类中跳过测试。

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

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

  • 步骤 2 - 在类中编写三个不同的 @Test 方法,如编程代码部分所示。

    • 第 1 个 @Test 方法 - 它被设置为 enabled=false。它根本不会执行,TestNG 在运行时会完全忽略它。即使在合并的运行详细信息中,它也不会被考虑。因此,只会执行两个测试。

    • 第 2 个 @Test 方法 - 它抛出 SkipException。TestNG 将打印第一行代码,并在到达 SkipExecution 代码后跳过其余代码。

    • 第 3 个 @Test 方法 - 它是条件跳过。代码检查 DataAvailable 参数是 True 还是 False。如果是 False,它将抛出 SkipException 并跳过测试。但是,如果 DataAvailable 为 true,它将不会抛出 SkipException 并继续执行。

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

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

示例

对通用 TestNG 类“NewTestngClass”使用以下代码

src/ NewTestngClass.java

import org.testng.SkipException;
import org.testng.annotations.Test;
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>

输出

Testcase 2 - skip exception example
Test ignored.
Test Case3 - Conditional Skip
Test ignored.
===============================================
Suite1
Total tests run: 2, Passes: 0, Failures: 0, Skips: 2
===============================================

更新于: 2022-03-09

6K+ 次查看

启动您的 职业生涯

通过完成课程获得认证

开始
广告