断言错误Python中的()是单元测试库函数,用于单元测试中以比较测试值与false。此函数将使用两个参数作为输入,并根据断言条件返回布尔值。如果测试值为假,则断言错误()将返回true,否则返回false。
用法: assertFalse(testValue, message)
参数:断言错误()接受以下说明的两个参数:
- testValue:布尔类型的变量,用于按函数比较
- message:作为测试消息失败时显示的消息的字符串语句。
下面列出了两个不同的示例,它们说明了给定assert函数的正面和负面测试案例:
示例1:否定测试用例
Python3
# unit test case
import unittest
class TestStringMethods(unittest.TestCase):
# test function
def test_negative(self):
testValue = True
# error message in case if test case got failed
message = "Test value is not false."
# assetFalse() to check test value as false
self.assertFalse( testValue, message)
if __name__ == '__main__':
unittest.main()
输出:
F ====================================================================== FAIL:test_negative (__main__.TestStringMethods) ---------------------------------------------------------------------- Traceback (most recent call last): File "p1.py", line 11, in test_negative self.assertFalse( testValue, message) AssertionError:True is not false:Test value is not false. ---------------------------------------------------------------------- Ran 1 test in 0.000s FAILED (failures=1)
示例2:正测试用例
Python3
# unit test case
import unittest
class TestStringMethods(unittest.TestCase):
# test function
def test_positive(self):
testValue = False
# error message in case if test case got failed
message = "Test value is not false."
# assertFalse() to check test value as false
self.assertFalse( testValue, message)
if __name__ == '__main__':
unittest.main()
输出:
. ---------------------------------------------------------------------- Ran 1 test in 0.000s OK
参考:https://docs.python.org/3/library/unittest.html
相关用法
- Python unittest assertNotIn()用法及代码示例
- Python unittest assertNotEqual()用法及代码示例
- Python unittest assertIsNot()用法及代码示例
- Python unittest assertIs()用法及代码示例
- Python unittest assertIsNone()用法及代码示例
- Python unittest assertIsNone()用法及代码示例
- Python unittest assertIsNotNone()用法及代码示例
- Python unittest assertEqual()用法及代码示例
- Python unittest assertIn()用法及代码示例
- Python unittest assertNotIsInstance()用法及代码示例
- Python unittest assertIsInstance()用法及代码示例
- Python unittest assertAlmostEqual()用法及代码示例
- Python unittest assertNotAlmostEqual()用法及代码示例
- Python unittest assertLessEqual()用法及代码示例
- Python unittest assertGreaterEqual()用法及代码示例
- Python unittest assertGreater()用法及代码示例
- Python unittest assertTrue()用法及代码示例
- Python unittest assertLess()用法及代码示例
注:本文由纯净天空筛选整理自Shivam.Pradhan大神的英文原创作品 Python unittest – assertFalse() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。