溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

pytest測(cè)試框架setup和tearDown的用法

發(fā)布時(shí)間:2020-08-04 09:47:44 來源:億速云 閱讀:276 作者:小豬 欄目:開發(fā)技術(shù)

這篇文章主要講解了pytest測(cè)試框架setup和tearDown的用法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

pytest的setup與teardown

1)pytest提供了兩套互相獨(dú)立的setup 與 teardown和一對(duì)相對(duì)自由的setup與teardown

2)模塊級(jí)與函數(shù)級(jí)

  模塊級(jí)(setup_module/teardown_module)  #開始于模塊始末(不在類中)

  函數(shù)級(jí)(setup_function/teardown_function)  #只對(duì)函數(shù)用例生效(不在類中)

3)方法級(jí)與類級(jí)

  方法級(jí)(setup_method/teardown_method)  #開始于方法始末(在類中)

  類級(jí)(setup_class/teardown_class)     #只在類中前后運(yùn)行一次(在類中)

3)類里面的(setup/teardown)           #運(yùn)行在調(diào)用方法的前后

setup與teardown例子

import pytest
# 模塊中的方法
def setup_module():
	print(
		"setup_module:整個(gè)test_module.py模塊只執(zhí)行一次"
	)
def teardown_module():
	print(
		"teardown_module:整個(gè)test_module.py模塊只執(zhí)行一次"
	)
def setup_function():
	print("setup_function:每個(gè)用例開始前都會(huì)執(zhí)行")
def teardown_function():
	print("teardown_function:每個(gè)用例結(jié)束后都會(huì)執(zhí)行")
# 測(cè)試模塊中的用例1
def test_one():
	print("正在執(zhí)行測(cè)試模塊----test_one")
# 測(cè)試模塊中的用例2
def test_two():
	print("正在執(zhí)行測(cè)試模塊----test_two")
# 測(cè)試類
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: 每個(gè)用例開始前執(zhí)行")
def teardown_method(self):
	print("teardown_method: 每個(gè)用例結(jié)束后執(zhí)行")
def setup(self):
	print("setup:每個(gè)用例開始前都會(huì)執(zhí)行")
def teardown(self):
	print("teardown:每個(gè)用例結(jié)束后都會(huì)執(zhí)行")
def test_three(self):
	print("正在執(zhí)行測(cè)試類----test_three")
def test_four(self):
	print("正在執(zhí)行測(cè)試類----test_four")
if __name__ == "__main__":
	pytest.main(["-s", "test_module.py"])

看完上述內(nèi)容,是不是對(duì)pytest測(cè)試框架setup和tearDown的用法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI