testng 資料驅動方法

2021-06-19 13:48:50 字數 282 閱讀 3203

自動化測試必然有測試資料,測試資料有多有少,我知道的testng的兩種資料驅動方式,第一種是直接將測試資料寫到測試類中,然後使用dataprovider來關聯資料,這種適用於測試資料少的情況,另一種方式是將資料寫到excel中,這種方式適用於資料量多的情況,比如資料上千。使用引數@source("test.xls")。

@test(dataprovider = "feeder")

@source("test.xls")

public void testlogin(long id,string name)

testNg斷言方法

assertture 判斷是否為true assertfalse 判斷是否為false assertsame判斷引用位址是否相同 assertnotssame判斷引用位址是否不相同 assertnull 判斷是否為null assertnotnull 判斷是否不為null assertequals判...

TestNG測試方法

分組測試是testng中的乙個新的創新功能,使用標記在testng.xml檔案中指定分組。它可以在或標籤下找到。標籤中指定分組適用於其下的所有標籤。或者標註 test groups 組名 test expectedexceptions arithmeticexception.class 預期的異常測...

TestNG註解 方法和類註解

本文介紹 beforemethod aftermethod beforeclass afterclass四個註解 beforemethod 在測試類中的每乙個 test註解方法執行之前執行一次 aftermethod 在測試類中的每乙個 test註解方法執行之後執行一次 beforeclass 在測...