如何使用TestNG断言两个列表相等?


TestNG 支持许多断言。它具有 **org.testng.Assert** 类,该类扩展了 Java 对象类 **java.lang.object**。

为了特别比较两个列表,TestNG 的 Assert 类有一个称为 **assertEquals(Object actual, Object expected)** 的方法,并且此方法还有一个带有自定义消息的扩展版本 **assertEquals(Object actual, Object expected, String message)**。

如果满足以下条件,此方法将返回 True:

  • 两个对象都是列表,

  • 两个列表的大小相同,并且

  • 如果列表的元素顺序相同。

如果这些条件中的任何一个不为真,它将返回 False。

在本文中,我们将讨论如何在 TestNG 中比较两个列表。

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

  • **步骤 1** - 创建一个 TestNG 类“**NewTestngClass**”。

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

    • **第一个 @Test 方法** - 它恰好包含 2 个相同的列表;满足所有 3 个条件并比较这两个列表。此测试将通过。

    • **第二个 @Test 方法** - 两个列表的大小不同,此测试将抛出异常。

    • **第三个 @Test 方法** - 列表中元素的顺序不同,此测试也将抛出异常。

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

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

示例

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

src/ NewTestngClass.java

import org.testng.Assert;
import org.testng.annotations.Test;
import java.util.ArrayList;
import java.util.List;
public class NewTestngClass {
   @Test
   public void testCase1() {
      System.out.println("in test case 1 of NewTestngClass");
      List<String> expectedName = new ArrayList<String>();
      expectedName.add("ramesh");
      expectedName.add("mahesh");
      expectedName.add("suresh");
      List<String> actualName = new ArrayList<String>();
      actualName.add("ramesh");
      actualName.add("mahesh");
      actualName.add("suresh");
      Assert.assertEquals(actualName,expectedName, "Comaparsion of 2 lists");
   }
   @Test
   public void testCase2() {
      System.out.println("in test case 2 of NewTestngClass");
      List<String> expectedName = new ArrayList<String>();
      expectedName.add("ramesh");
      expectedName.add("mahesh");
      expectedName.add("suresh");
      List<String> actualName = new ArrayList<String>();
      actualName.add("ramesh");
      actualName.add("mahesh");
      Assert.assertEquals(actualName,expectedName,"Comparison of 2 lists");
   }
   @Test
   public void testCase3() {
      System.out.println("in test case 3 of NewTestngClass");
      List<String> expectedName = new ArrayList<String>();
      expectedName.add("ramesh");
      expectedName.add("mahesh");
      expectedName.add("suresh");
      List<String> actualName = new ArrayList<String>();
      actualName.add("suresh");
      actualName.add("ramesh");
      actualName.add("mahesh"); Assert.assertEquals(actualName,expectedName,"Comaparsion of 2 lists");
   }
}

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>

输出

in test case 1 of NewTestngClass
in test case 2 of NewTestngClass

java.lang.AssertionError: Comaparsion of 2 lists: lists don't have the same size expected [3] but found [2]

Expected :3
Actual :2

in test case 3 of NewTestngClass

java.lang.AssertionError: Comaparsion of 2 lists: Lists differ at element [0]: ramesh != suresh expected [ramesh] but found [suresh]
Expected :ramesh
Actual :suresh

===============================================
Suite1
Total tests run: 3, Passes: 1, Failures: 2, Skips: 0
===============================================

更新于:2022-03-09

3K+ 次查看

启动你的 职业生涯

通过完成课程获得认证

开始
广告