這篇文章給大家介紹如何在Python中使用unittest模塊,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、小程序制作、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了西湖免費(fèi)建站歡迎大家使用!python的unittest模塊提供了一個(gè)測(cè)試框架,只要我們寫一個(gè)繼承unittest.TestCase
的類,類中用setUp做初始化,用tearDown
做清理。
主要用到的函數(shù)有:
failedinfo表示不成立打印信息failedinfo,為可選參數(shù)
self.fail([msg])會(huì)無條件的導(dǎo)致測(cè)試失敗,不推薦使用。
self.assertEqual(value1, value2, failedinfo) # 斷言value1 == value2
self.assertTrue(表達(dá)式, failedinfo) # 斷言value為真
self.assertFalse(表達(dá)式, failedinfo) # 斷言value為假
# 斷言肯定發(fā)生異常,如果沒發(fā)生異常,則為測(cè)試失敗。
# 參數(shù)1為異常,參數(shù)二為拋出異常的調(diào)用對(duì)象,剩余參數(shù)為傳遞給可調(diào)用對(duì)象的參數(shù)。
self.assertRaises(ValueError, self.widget.resize, -1, -1)
調(diào)用時(shí)機(jī)的加self,如self.assertEqual(self.seq, range(10)),self.assertTrue(value > 100)
更詳細(xì)的教程見:http://pyunit.sourceforge.net/pyunit_cn.html
Python代碼:
#coding=utf-8 import random import unittest class TestSequenceFunctions(unittest.TestCase): def setUp(self): self.seq = range(10) def test_shuffle(self): # make sure the shuffled sequence does not lose any elements random.shuffle(self.seq) self.seq.sort() self.assertEqual(self.seq, range(10)) # should raise an exception for an immutable sequence self.assertRaises(TypeError, random.shuffle, (1,2,3)) def test_choice(self): element = random.choice(self.seq) self.assertTrue(element in self.seq) def test_sample(self): with self.assertRaises(ValueError): random.sample(self.seq, 20) for element in random.sample(self.seq, 5): self.assertTrue(element in self.seq) results_fields = [ ("username", unicode), ("showid", unicode), ("total_pv", int), ("pubdate", unicode), ("tags", list), ("showname", unicode), ("pg", int), ("ext", str), ] results_fields_map = dict(results_fields) class TestDictValueFormatFunctions(unittest.TestCase): def setUp(self): self.results = [{ "username": u"瘋狂豆花", "showid": u"130e28f0fe0811e0a046", "total_pv": 14503214, "pubdate": u"2012-07-07 01:22:47", "tags": [ "軒轅劍", "天之痕" ], "showname" : u"軒轅劍之天之痕", "pg" : 1, "ext" : "mp4" } ] def test_format(self): self.assertTrue(isinstance(self.results, list), "self.results's type must be dict but got {0}".format(type(self.results))) for r in self.results: for f in results_fields_map: value = r.get(f, None) self.assertTrue(isinstance(value, results_fields_map[f]), u"{0}'s type must be {1} but got {2}".format(value, results_fields_map[f], type(value))) #self.assertTrue(isinstance(value, results_fields_map[f])) def test_value(self): for r in self.results: self.assertEqual(r["pg"], 1) self.assertEqual(r["ext"], u"mp4") if __name__ == '__main__': # unittest.main() # 用這個(gè)是最簡(jiǎn)單的,下面的用法可以同時(shí)測(cè)試多個(gè)類 # unittest.TextTestRunner(verbosity=2).run(suite1) # 這個(gè)等價(jià)于上述但可設(shè)置verbosity=2,省去了運(yùn)行時(shí)加-v suite1 = unittest.TestLoader().loadTestsFromTestCase(TestSequenceFunctions) suite2 = unittest.TestLoader().loadTestsFromTestCase(TestDictValueFormatFunctions) suite = unittest.TestSuite([suite1, suite2]) unittest.TextTestRunner(verbosity=2).run(suite)
運(yùn)行結(jié)果:
test_choice (__main__.TestSequenceFunctions) ... ok
test_sample (__main__.TestSequenceFunctions) ... ok
test_shuffle (__main__.TestSequenceFunctions) ... ok
test_format (__main__.TestDictValueFormatFunctions) ... ok
test_value (__main__.TestDictValueFormatFunctions) ... ok----------------------------------------------------------------------
Ran 5 tests in 0.013sOK
關(guān)于如何在Python中使用unittest模塊就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
本文題目:如何在Python中使用unittest模塊-創(chuàng)新互聯(lián)
文章地址:http://jinyejixie.com/article18/dehjgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、網(wǎng)站策劃、網(wǎng)頁設(shè)計(jì)公司、小程序開發(fā)、虛擬主機(jī)、App設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容