This website works better with JavaScript
Home
Explore
Help
Sign In
zhensolid
/
Python-100-Days
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
d1f0857d8d
Branches
Tags
dependabot/pip/50WPython/code/Python/opencourse/lxml-4.6.3
dependabot/pip/50WPython/code/Python/opencourse/pygments-2.7.4
dependabot/pip/50WPython/code/Python/opencourse/urllib3-1.26.5
master
Python-100-Days
/
Day41-55
/
54.单元测试.md
54.单元测试.md
240 B
History
Raw
单元测试
Python标准库中提供了名为
unittest
的模块来支持我们对代码进行单元测试。所谓单元测试是指针对程序中最小的功能单元(在Python中指函数或类中的方法)进行的测试。