Python编程:使用unittest模块进行单元测试
【摘要】 单元测试用例代码实例
# -*- coding: utf-8 -*-
# @Date : 2018-12-21
# @Author : Peng Shiyu
import unittest
# 继承unittest.TestCase
class MyTest(unittest.TestCase): # 必须使用@classmethod 装饰器,所有test运...
单元测试用例代码实例
# -*- coding: utf-8 -*-
# @Date : 2018-12-21
# @Author : Peng Shiyu
import unittest
# 继承unittest.TestCase
class MyTest(unittest.TestCase): # 必须使用@classmethod 装饰器,所有test运行前运行一次 @classmethod def setUpClass(cls): print("类测试开始...") # 必须使用 @ classmethod装饰器, 所有test运行完后运行一次 @classmethod def tearDownClass(cls): print("类测试结束") # 每个测试用例执行之前做操作 def setUp(self): print("方法测试开始...") # 每个测试用例执行之后做操作 def tearDown(self): print("方法测试结束") # 测试用例 def test_print(self): print("测试输出") # 测试用例 def test_equal(self): print("测试相等") self.assertEqual("a", "a")
if __name__ == '__main__': # 运行所有的测试用例 unittest.main()
"""
类测试开始...方法测试开始...
测试相等
方法测试结束
方法测试开始...
测试输出
方法测试结束
类测试结束
"""
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
TestCase 中最常用的断言方法
断言方法 | 检查条件 |
---|---|
assertEqual(a, b) | a == b |
assertNotEqual(a, b) | a != b |
assertTrue(x) | bool(x) is True |
assertFalse(x) | bool(x) is False |
assertIs(a, b) | a is b |
assertIsNot(a, b) | a is not b |
assertIsNone(x) | x is None |
assertIsNotNone(x) | x is not None |
assertIn(a, b) | a in b |
assertNotIn(a, b) | a not in b |
assertlsInstance(a, b) | isinstance(a, b) |
assertNotIsInstance(a, b) | not isinstance(a, b) |
运行测试
1、 运行当前源文件中的所有测试用例
unittest.main()
- 1
2、运行测试文件
python -m unittest 测试文件
- 1
3、运行当前目录下的所有测试用例
python -m unittest
- 1
此处可能出现如下字符:
.:代表测试通过
F:代表测试失败 failure
E:代表测试出错 error
s:代表跳过该测试 skip
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/85157647
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)