在測試用例的前面加上:
@pytest.mark.parametrize("參數名",列表數據)
參數名:用來接收每一項數據,並做爲測試用例的參數。
列表數據:一組測試數據。測試
示例代碼:spa
import pytest test_datas = [ (11, 22, 33), (22, 33, 55) ] datas_dict = [ {"a": 1, "b": 2, "c": 3}, {"a": 11, "b": 22, "c": 33}, {"a": 111, "b": 222, "c": 333}, ] # 方式一:直接寫 @pytest.mark.parametrize("a, b, c", [(1, 2, 3), (4, 5, 9)]) def test_add01(a, b, c): res = a + b assert res == c # 方式二:參數爲列表中嵌套元組 @pytest.mark.parametrize("data", test_datas) def test_add02(data): res = data[0] + data[1] assert res == data[2] # 方式三:參數爲列表中嵌套字典 @pytest.mark.parametrize("data", datas_dict) def test_add03(data): res = data["a"] + data["b"] assert res == data["c"]