码迷,mamicode.com
首页 > 其他好文 > 详细

pytest_用例运行级别_class级

时间:2019-08-17 19:59:10      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:self   stc   方法   span   dir   直接   model   完成   setup   

‘‘‘
模块级(setup_module/teardown_module)开始于模块始末,
全局的在类中不起作用
类级(setup_class/teardown_class)只在类中前后运行一次(在
类中)
方法级(setup_method/teardown_method)开始于方法始末
(在类中)

函数级(setup_function/teardown_function只对函数用例生
效(在类中不生效)
setup_function
teardown_function
‘‘‘
import  pytest
def setup_function():
    print()
    print("setup_function:class外的每个用例前开始执行")

def teardown_function():
    print("teardown_function:class外的每个个用例后开始执行")

def setup_module():
    """
    这是一个module级别的setup,它会在本module(test_fixt_class.py)里
    所有test执行之前,被调用一次。
    注意,它是直接定义为一个module里的函数"""
    print()
    print("-------------- setup before module --------------")
def teardown_module():
    """
    这是一个module级别的teardown,它会在本module(test_fixt_class.py)里
    所有test执行完成之后,被调用一次。
    注意,它是直接定义为一个module里的函数"""
    print("-------------- teardown after module --------------")
def test_add():
    print("正在执行test_fire")
    a = "hello"
    b = "hello word"
    assert a in b
class TestCase():
    def setup(self):
        print("setup: 每个用例开始前执行")
    def teardown(self):
        print("teardown: 每个用例结束后执行")
    def setup_class(self):
        print("setup_class:所有用例执行之前")
    def teardown_class(self):
        print("teardown_class:所有用例执行之前")
    def setup_method(self):
        print("setup_method: 每个用例开始前执行")
    def teardown_method(self):
        print("teardown_method: 每个用例结束后执行")
    def test_one(self):
        print("正在执行----test_one")
        x = "this"
        assert h in x
    def test_three(self):
        print("正在执行test_two")
        a = "hello"
        b = "hello word"
        assert a in b
    def add(self,a, b):
        print("这是加减法")
        return a + b
if __name__ == __main__:
    pytest.main([-s, test_fixt_class])

运行结果:
============================= test session starts =============================
platform win32 -- Python 3.7.4, pytest-5.1.0, py-1.8.0, pluggy-0.12.0
rootdir: E:\py_pytest\interfacecollected 3 items

test_fixt_class.py
-------------- setup before module --------------

setup_function:class外的每个用例前开始执行
.正在执行test_fire
teardown_function:class外的每个个用例后开始执行
setup_class:所有用例执行之前
setup_method: 每个用例开始前执行
setup: 每个用例开始前执行
.正在执行----test_one
teardown: 每个用例结束后执行
teardown_method: 每个用例结束后执行
setup_method: 每个用例开始前执行
setup: 每个用例开始前执行
.正在执行test_two
teardown: 每个用例结束后执行
teardown_method: 每个用例结束后执行
teardown_class:所有用例执行之前
-------------- teardown after module --------------
[100%]

============================== 3 passed in 0.02s ==============================

 

结论1:
模块级(setup_module/teardown_module)开始于模块始末,
全局的在类中不起作用
函数级(setup_function/teardown_function只对函数用例生
效(在类中不生效)
结论2:
从结果看出,运行的优先级: 
setup_model>setup_class>setup_method> setup >用例case> teardown> teardown_method> teardown_class >teardown_model

 


 
 

 

pytest_用例运行级别_class级

标签:self   stc   方法   span   dir   直接   model   完成   setup   

原文地址:https://www.cnblogs.com/tallme/p/11369791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!