Python+pytest+allure 环境搭建
2021-04-09 23:29
标签:add ken comment tor 函数 数据驱动 环境配置 python art 1、allure环境配置 # 待测函数 def add(a, b): return a + b # 测试类参数化 def test_add2(self, a, b, c): Python+pytest+allure 环境搭建 标签:add ken comment tor 函数 数据驱动 环境配置 python art 原文地址:https://www.cnblogs.com/kaifl/p/13370977.htmlPytest 参数化(数据驱动)
@pytest.mark.parametrize(‘a, b, c‘, [(1,2,3), (4,5,9)])
class TestAdd():
def test_add1(self, a, b, c):
assert add(a, b) == c
assert add(a, b) == c
下一篇:Java接口
文章标题:Python+pytest+allure 环境搭建
文章链接:http://soscw.com/index.php/essay/73538.html