美文网首页
1、pytest之setup和teardown

1、pytest之setup和teardown

作者: star_he | 来源:发表于2023-02-14 17:20 被阅读0次

模块级 setup_module / teardown_module 全局,开始于模块始末
函数级 setup_functhon / teardown_function 只对函数用例生效(不在类中)
类级 setup_class / teardown_class 只在类中前后运行一次(在类中)
方法级 setup_method / teardown_method 开始于方法始末(在类中)

模块级 setup_module / teardown_module

module

函数级 setup_functhon / teardown_function

function

类级 setup_class / teardown_class

class

方法级 setup_method / teardown_method

method

相关文章

网友评论

      本文标题:1、pytest之setup和teardown

      本文链接:https://www.haomeiwen.com/subject/uffvxdtx.html