unittest框架的TestCase提供了如下斷言方法
創(chuàng)新互聯(lián)專注于長白企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站,商城開發(fā)。長白網(wǎng)站建設(shè)公司,為長白等地區(qū)提供建站服務(wù)。全流程按需策劃,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
方法 | 檢查 | 版本 |
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)斷言第一個參數(shù)和第二個參數(shù)是否相等,不相等測試失敗,msg可選參數(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()