您好,登錄后才能下訂單哦!
unittest框架的TestCase提供了如下斷言方法
方法 | 檢查 | 版本 |
assertEqual(a,b) | a==b | |
assertNotEqual(a,b) | a!=b | |
assertTrue(x) | bool(x) is True | |
assertFale(x) | bool(x) is False | |
assertIs(a,b) | a is b | 3.1 |
assertNot(a,b) | a is not b | 3.1 |
assertNone(x) | x is None | 3.1 |
assertNotNoe(x) | x is not None | 3.1 |
assertIn(a,b) | a is in b | 3.1 |
assertNotIn(a,b) | a is not in b | 3.1 |
assertIsInstance(a,b) | isinstance(a,b) | 3.2 |
assertNotIsInstance(a,b) | not isinstance(a,b) | 3.2 |
assertEqual(a,b,msg=None)斷言第一個(gè)參數(shù)和第二個(gè)參數(shù)是否相等,不相等測(cè)試失敗,msg可選參數(shù),用于定義測(cè)試失敗時(shí)打印的信息
文件isPrime
import unittest #判斷是否為質(zhì)數(shù) class IsPrime(): def __init__(self,number): self.number=number def isPrime(self): if self.number<=1: return False for i in range(2,self.number): if self.number % i ==0: return False return True class TestIsPrime(unittest.TestCase): def setup(self): print('test start') def test_case(self): j=IsPrime(5) print(j.isPrime()) self.assertTrue(j.isPrime(),msg='not is prime') def teardown(self): print('test end') if __name__ =='__main__': unittest.main()
免責(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)容。