您好,登錄后才能下訂單哦!
這篇文章主要講解了Python如何安裝HTMLTestRunner庫(kù),內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
安裝 HTMLTestRunner 庫(kù)的方法非常簡(jiǎn)單,直接 pip 就可以了
pip install html-testRunner
官方示例代碼:
import HtmlTestRunner import unittest class TestStringMethods(unittest.TestCase): def test_upper(self): self.assertEqual('foo'.upper(), 'FOO') def test_error(self): """ This test should be marked as error one. """ raise ValueError def test_fail(self): """ This test should fail. """ self.assertEqual(1, 2) @unittest.skip("This is a skipped test.") def test_skip(self): """ This test should be skipped. """ pass if __name__ == '__main__': unittest.main(testRunner=HtmlTestRunner.HTMLTestRunner(output='example_dir'))
這是運(yùn)行后,生成的 HTML 網(wǎng)頁(yè)
看完上述內(nèi)容,是不是對(duì)Python如何安裝HTMLTestRunner庫(kù)有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(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)容。