TestNG中BeforeTest和BeforeMethod的区别


一个 TestNG 类可以包含各种 TestNG 方法。例如:@BeforeTest @AfterTest @BeforeSuite @BeforeClass @BeforeMethod @test 等。

根据执行顺序,@BeforeTest 首先执行,然后是 @BeforeMethod。

但是,如果一个类中有多个 TestNG 测试,这些方法的行为就会很明显,因为 @BeforeTest 只在第一个 @Test 方法执行之前运行一次,而 @BeforeMethod 在每个 @Test 执行之前都会运行。

  • @BeforeTest:此方法在调用第一个 @Test 方法之前,在整个执行过程中只执行一次。无论存在多少个 @Test 标签,或者有多少个类包含 @Test 标签,或者多个类有多个测试标签,都无关紧要。根据 testing.xml 文件,一旦执行开始,@BeforeTest 方法只在第一个 @Test 方法以及 @BeforeClass 和 @BeforeMethod(如果存在)的执行之前执行一次。

  • @BeforeMethod:此方法每个 @Test 执行一次,即 @BeforeMethod 的执行次数 = 要执行的 @Test 方法的数量。根据 testing.xml,如果需要执行 10 个 @Test,则 @BeforeMethod 会在每个 @Test 开始运行之前执行。

这些差异的关键点是

  • @BeforeTest 方法只在第一个 @Test 方法之前执行一次。

  • @BeforeMethod 在每个 @Test 方法之前执行。

  • 如果在不同的类中存在单独的 @BeforeTest 和 @BeforeMethod 方法,则所有 @BeforeTest 方法将首先执行,但 @BeforeMethod 方法将根据各自的类及其 @Test 方法执行。

  • 如果所有测试类都扩展了单独类中存在的公共 @BeforeTest 和 @BeforeMethod 方法,则 @BeforeTest 将只执行一次,但是相同的 @BeforeMethod 方法将在每个 @Test 之前执行。

场景 1

当有两个 TestNG 类,每个类都有两个 @Test 标签时。每个类都扩展了包含 @BeforeTest 和 @BeforeMethod 的公共类。在这种情况下,@BeforeTest 只执行一次,但是相同的 @BeforeMethod 将执行 2*2 次,每次在每个 @Test 之前。

解决此问题的方法/算法

  • 步骤 1  创建一个公共的 TestNG 类 - beforemethods 并编写 @BeforeTest 和 @BeforeMethod 方法。

  • 步骤 2 − 创建 2 个 TestNG 类,每个类都扩展公共类 (beforemethods) - OrderofTestExecutionInTestNG 和 NewTestngClass

  • 步骤 3  在每个类中编写 2 个不同的 @Test 方法 - OrderofTestExecutionInTestNG 和 NewTestngClass。

  • 步骤 4  现在创建如下所示的 testNG.xml 以运行 2 个 TestNG 类,而不是公共类。

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

示例

以下代码用于公共 TestNG 类 - beforemethods。

import org.testng.annotations.BeforeMethod;
import org.testng.annotations.BeforeTest;

public class beforemethods {
    @BeforeMethod
    public void beforeMethod() {
        System.out.println("in beforeMethod");
    }
    @BeforeTest
    public void beforeTest() {
        System.out.println("in beforeTest");
    }
} 

以下代码用于 TestNG 类 - OrderofTestExecutionInTestNG   

import org.testng.annotations.Test;

public class OrderofTestExecutionInTestNG extends beforemethods {
    // test case 1
    @Test
    public void testCase1() {
        System.out.println("in test case 1 of OrderofTestExecutionInTestNG");
    }
    // test case 2
    @Test
    public void testCase2() {
        System.out.println("in test case 2 of OrderofTestExecutionInTestNG");
    }
}  

以下代码用于公共 TestNG 类 - NewTestngClass   

import org.testng.annotations.Test;

public class NewTestngClass extends beforemethods{
    @Test
    public void testCase1() {
        System.out.println("in test case 1 of NewTestngClass");
    }
    @Test
    public void testCase2() {
        System.out.println("in test case 2 of NewTestngClass");
    } 
} 

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 = "OrderofTestExecutionInTestNG"/>
    <class name = "NewTestngClass"/>
      </classes>
   </test>
</suite>

输出

in beforeTest
in beforeMethod
in test case 1 of OrderofTestExecutionInTestNG
in beforeMethod
in test case 2 of OrderofTestExecutionInTestNG
in beforeMethod
in test case 1 of NewTestngClass
in beforeMethod
in test case 2 of NewTestngClass

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

场景 2

当有两个 TestNG 类,每个类都有两个 @Test 标签和单独的 @BeforeTest 以及 @BeforeMethod 时。在这种情况下,所有 @BeforeTest 方法将首先执行,但 @BeforeMethod 将根据各自的类和 @Test 执行。

解决此问题的方法/算法

  • 步骤 1    创建 2 个 TestNG 类 - OrderofTestExecutionInTestNG 和 NewTestngClass

  • 步骤 2  在每个类中编写 2 个不同的 @Test 方法 - OrderofTestExecutionInTestNG 和 NewTestngClass。

  • 步骤 3  在每个类中编写不同的 @BeforeTest 方法 - OrderofTestExecutionInTestNG 和 NewTestngClass。

  • 步骤 4  在每个类中编写不同的 @BeforeMethod - OrderofTestExecutionInTestNG 和 NewTestngClass。

  • 步骤 5  现在创建如下所示的 testNG.xml 以运行 2 个 TestNG 类

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

示例

以下代码用于 TestNG 类 - OrderofTestExecutionInTestNG。

import org.testng.annotations.*;

public class OrderofTestExecutionInTestNG {
    // test case 1
    @Test
    public void testCase1() {
        System.out.println("in test case 1 of OrderofTestExecutionInTestNG");
    }
    // test case 2
    @Test
    public void testCase2() {
        System.out.println("in test case 2 of OrderofTestExecutionInTestNG");
    }
    @BeforeMethod
    public void beforeMethod() {
        System.out.println("in beforeMethod of OrderofTestExecutionInTestNG");
    }
    @BeforeTest
    public void beforeTest() {
        System.out.println("in beforeTest of OrderofTestExecutionInTestNG");
    }
}

以下代码用于公共 TestNG 类 - NewTestngClass。

import org.testng.annotations.*;

public class NewTestngClass {

    @Test
    public void testCase1() {
        System.out.println("in test case 1 of NewTestngClass");
    }
    @Test
    public void testCase2() {
        System.out.println("in test case 2 of NewTestngClass");
    }

    @BeforeTest
    public void beforeTest() {
        System.out.println("in beforeTest of NewTestngClass");
    }
    @BeforeMethod
    public void beforeMethod() {
        System.out.println("in beforeMethod of NewTestngClass");
 }
} 

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 = "OrderofTestExecutionInTestNG"/>
    <class name = "NewTestngClass"/>
      </classes>
   </test>
</suite>

输出

in beforeTest of NewTestngClass
in beforeTest of OrderofTestExecutionInTestNG
in beforeMethod of OrderofTestExecutionInTestNG
in test case 1 of OrderofTestExecutionInTestNG
in beforeMethod of OrderofTestExecutionInTestNG
in test case 2 of OrderofTestExecutionInTestNG
in beforeMethod of NewTestngClass
in test case 1 of NewTestngClass
in beforeMethod of NewTestngClass
in test case 2 of NewTestngClass

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

更新于: 2023年8月16日

3K+ 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告