This website requires JavaScript.
Explore
Help
Register
Sign In
jackfrued
/
Python-100-Days
mirror of
https://github.com/jackfrued/Python-100-Days.git
Watch
1
Star
0
Fork
You've already forked Python-100-Days
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
21032ac9e8
Python-100-Days
/
Day41-55
/
54.单元测试.md
5 lines
240 B
Markdown
Raw
Normal View
History
Unescape
Escape
更新了部分文档
2020-10-19 18:05:56 +08:00
## 单元测试
更新了部分文档
2019-02-15 11:11:54 +08:00
更新了部分文档
2020-10-19 18:05:56 +08:00
Python标准库中提供了名为`unittest` 的模块来支持我们对代码进行单元测试。所谓单元测试是指针对程序中最小的功能单元
(
在Python中指函数或类中的方法
)
进行的测试。
更新了部分文档
2019-02-15 11:11:54 +08:00