1.参数化的本质:相同的步骤,但测试数据不同,比如登录的场景 import mathimport pytest# 方式一:分离出Listdef list_Test(): list = [ [2, 2, 4], [2, 3, 8], [1, 9, 1], [0, 9, 0], ] return list@pytest.mark.parametrize('a,b,expect',list_Test())def test_add_one(a,b,expect): # 断言 -- 某数的平方=expec