• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

简单了解pytest测试框架setup和tearDown

python 搞代码 4年前 (2022-01-08) 26次浏览 已收录 0个评论

这篇文章主要介绍了简单了解pytest测试框架setup和tearDown,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

pytest的setup与teardown

1)pytest提供了两套互相独立的setup 与 teardown和一对相对自由的setup与teardown

2)模块级与函数级

  模块级(setup_module/teardown_module)  #开始于模块始末(不在类中)

  函数级(setup_function/teardown_function)  #只对函数用例生效(不在类中)

3)方法级与类级

  方法级(setup_method/teardown_method)  #开始于方法始末(在类中)

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

3)类里面的(setup/teardown)           #运行在调用方法的前后

setup与teardown例子

 import pytest # 模块中的方法 def setup_module(): print( "setup_module:整个test_module.py模块只执行一次" ) def teardown_module(): print( "teardown_module:整个test_module.py模块只执行一次" ) def setup_function(): print("setup_function:每个用例开始前都会执行") def teardown_function(): print("teardown_function:每个用例结束后都会执行") # 测试模块中的用例1 def test_one(): print("正在执行测试模块----test_one") # 测试模块中的用例2 def test_two(): print("正在执行测试模块----test_two") # 测试类 class TestCase(): 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 setup(self): print("setup:每个用例开始前都会执行"<a style="color:transparent">来源gao($daima.com搞@代@#码网</a>) def teardown(self): print("teardown:每个用例结束后都会执行") def test_three(self): print("正在执行测试类----test_three") def test_four(self): print("正在执行测试类----test_four") if __name__ == "__main__": pytest.main(["-s", "test_module.py"])

以上就是简单了解pytest测试框架setup和tearDown的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:简单了解pytest测试框架setup和tearDown

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址