這篇文章主要講解了pytest測試框架setup和tearDown的用法,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會有幫助。
創(chuàng)新互聯(lián)公司2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計制作、網(wǎng)站設(shè)計網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元驛城做網(wǎng)站,已為上家服務(wù),為驛城各地企業(yè)和個人服務(wù),聯(lián)系電話:13518219792pytest的setup與teardown
1)pytest提供了兩套互相獨(dú)立的setup 與 teardown和一對相對自由的setup與teardown
2)模塊級與函數(shù)級
模塊級(setup_module/teardown_module) #開始于模塊始末(不在類中)
函數(shù)級(setup_function/teardown_function) #只對函數(shù)用例生效(不在類中)
3)方法級與類級
方法級(setup_method/teardown_method) #開始于方法始末(在類中)
類級(setup_class/teardown_class) #只在類中前后運(yùn)行一次(在類中)
3)類里面的(setup/teardown) #運(yùn)行在調(diào)用方法的前后
setup與teardown例子
import pytest # 模塊中的方法 def setup_module(): print( "setup_module:整個test_module.py模塊只執(zhí)行一次" ) def teardown_module(): print( "teardown_module:整個test_module.py模塊只執(zhí)行一次" ) def setup_function(): print("setup_function:每個用例開始前都會執(zhí)行") def teardown_function(): print("teardown_function:每個用例結(jié)束后都會執(zhí)行") # 測試模塊中的用例1 def test_one(): print("正在執(zhí)行測試模塊----test_one") # 測試模塊中的用例2 def test_two(): print("正在執(zhí)行測試模塊----test_two") # 測試類 class TestCase(): def setup_class(self): print("setup_class:所有用例執(zhí)行之前") def teardown_class(self): print("teardown_class:所有用例執(zhí)行之后") def setup_method( self): print("setup_method: 每個用例開始前執(zhí)行") def teardown_method(self): print("teardown_method: 每個用例結(jié)束后執(zhí)行") def setup(self): print("setup:每個用例開始前都會執(zhí)行") def teardown(self): print("teardown:每個用例結(jié)束后都會執(zhí)行") def test_three(self): print("正在執(zhí)行測試類----test_three") def test_four(self): print("正在執(zhí)行測試類----test_four") if __name__ == "__main__": pytest.main(["-s", "test_module.py"])