摘要:
###项目目录结构: ├─api ├─core └─testcase api : 封装 python 接口 core:封装 Restful 类型的请求 testcase : 编写用例 ###根据 Requests 的源码进行二次封装 core/rest_client.py import reques 阅读全文
摘要:
###前言 unittest 是一款基于 Python 语言的单元测试框架。unittest 是 Python 开发包 中的一个标准模块,使用的时候直接导入即可。 官方文档: https://docs.python.org/2/library/unittest.html ####为啥要用框架? 方便 阅读全文