pytest Fixture:使用Fixture实现用例之间的调用

特点:

定义Fixture跟定义普通函数差不多,唯一的区别就是在函数上加个装饰器@pytest.fixture()

fixture命名不要以test开头,跟用例区分开。fixture是有返回值得,没有返回值默认为None。

用例调用fixture的返回值,直接就是把fixture的函数名称当做变量名称

import pytest

@pytest.fixture()
def init():
    print('init...')
    return 1

def test1(init):       #test1里面需要用到初始化了,就需要把初始化函数名字当做参数传过来,当我们调用test1时,首先执行的是init()这个函数
    print('test1')

def test2(init):
    print('test2')


if __name__ == '__main__':
    pytest.main(['-sv','test06.py'])

 

上一篇:简单查询


下一篇:pytest--fixture之yield实现teardown