当前位置 : 主页 > 编程语言 > python >

Pytest学习-Fixture调用方法

来源:互联网 收集:自由互联 发布时间:2022-08-10
@ pytest . fixture ( scope = 'function' ) def func (): * * * * * # 第一种,可以接收返回值 def test_func ( func ): * * * * * # 第二种,无法接收返回值 @ pytest . mark . usefixtures ( 'func' ) def test_func (): * * * * *
@pytest.fixture(scope='function')
def func():
*****
# 第一种,可以接收返回值
def test_func(func):
*****

# 第二种,无法接收返回值
@pytest.mark.usefixtures('func')
def test_func():
******

这里主要是学习第二种

Pytest学习-Fixture调用方法_pytest

这里就没有拿到上一篇文章中yield的返回值‘zhou'


PS:第一种的使用场景满足大部分,第二种更容易让其他人知道调用的是什么

上一篇:Pytest学习-Fixture参数
下一篇:没有了
网友评论