當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python unittest assertGreater()用法及代碼示例


Python中的assertGreater()是單元測試庫函數,用於單元測試中以檢查第一個給定值是否大於第二個值。此函數將使用三個參數作為輸入,並根據斷言條件返回布爾值。

此函數檢查第一個給定值是否大於第二個值,如果是,則返回true,否則,如果第一個值不大於第二個值,則返回false。

用法:assertGreater(first, second, message=None)

參數:assertGreater()接受以下說明的三個參數:

  • first:第一個輸入值(整數)
  • second:第二個輸入值(整數)
  • message:作為測試消息失敗時顯示的消息的字符串語句。

下麵列出的示例說明了給定assert函數的正負測試用例:



範例1:

Python3

# test suite 
import unittest 
  
class TestStringMethods(unittest.TestCase):
    
    # negative test function to test if values1  
    # is greater than value2 
    def test_negativeForGreater(self):
        first = 4
        second = 5
          
        # error message in case if test case got failed 
        message = "first value is not greater that second value."
          
        # assert function() to check if values1 is  
        # greater than value2 
        self.assertGreater(first, second, message) 
  
if __name__ == '__main__':
    unittest.main()

輸出:

F
======================================================================
FAIL:test_negativeForGreater (__main__.TestStringMethods)
———————————————————————-
Traceback (most recent call last):
 File “p1.py”, line 13, in test_negativeForGreater
   self.assertGreater(first, second, message)
AssertionError:4 not greater than 5:first value is not greater that second value.

———————————————————————-
Ran 1 test in 0.000s

FAILED (failures=1)

範例2:

Python

# test suite 
import unittest 
  
class TestStringMethods(unittest.TestCase):
    
    # positive test function to test if values 
    # are almost equal with place 
    def test_positiveForGreater(self):
        first = 4
        second = 3
          
        # error message in case if test case got failed 
        message = "first value is not greater that second value."
          
        # assert function() to check if values1 is 
        # greater than value2 
        self.assertGreater(first, second, message) 
  
  
if __name__ == '__main__':
    unittest.main()

輸出:

.
———————————————————————-
Ran 1 test in 0.000s

OK




相關用法


注:本文由純淨天空篩選整理自Shivam.Pradhan大神的英文原創作品 Python – assertGreater() function in unittest。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。