本文小編為大家詳細(xì)介紹“python的setup和teardown如何使用”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“python的setup和teardown如何使用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
目前創(chuàng)新互聯(lián)公司已為上1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、雅安服務(wù)器托管、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計、夏河網(wǎng)站維護(hù)等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
說明
1、setup/teardown:每種方法將執(zhí)行一次,無論是類內(nèi)還是類外。
2、Setup:方法運行前執(zhí)行,表示前置條件。
必須在每個用例執(zhí)行前執(zhí)行一次。
3、Teardown:方法運行后才能執(zhí)行,表示資源釋放。
每次用例執(zhí)行后都會執(zhí)行一次。
實例
# file_name: test_setup.py import pytest def setup(): print("...類外setup...") def test_create(): print("類外test_create") def test_view(): print("類外test_view") class TestSetupClass: def setup(self): print("...類內(nèi)setup...") def test_create(self): print("類內(nèi)test_create") def test_view(self): print("類內(nèi)test_view") def teardown(self): print("...類內(nèi)teardown...") def teardown(): print("...類外teardown...") if __name__ == '__main__': pytest.main(['-vs', 'test_setup.py'])
讀到這里,這篇“python的setup和teardown如何使用”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。