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

Pytest学习-setup/teardown

来源:互联网 收集:自由互联 发布时间:2022-08-10
1、模块级 setup_module/teardown_moudule (开始于模块始末、全局) 2、函数级 setup_function/teardown_fucntion (只对函数用例生效(不在类中))每一次运行测试方法都会运行一次setup_method/teardown_m

1、模块级 setup_module/teardown_moudule (开始于模块始末、全局)

Pytest学习-setup/teardown_pytest

2、函数级 setup_function/teardown_fucntion (只对函数用例生效(不在类中))每一次运行测试方法都会运行一次setup_method/teardown_method

Pytest学习-setup/teardown_pytest_02

3、类级 setup_class/teardown_class (只在类中前后运行一次(在类中))

Pytest学习-setup/teardown_pytest_03

4、方法级 setup_method/teardown_method (开始于方法始末(在类中)),每一次运行测试方法都会运行一次setup_method/teardown_method

Pytest学习-setup/teardown_pytest_04

上一篇:Pytest学习-skip/skipif
下一篇:没有了
网友评论