pytest
一、介绍
==========================================
二、安装
安装方式:
(1)pip install -U pytest
(2) 在pycharm中安装 (3)卸载 pip uninstall pytest(有疑问) (4)查看pytest版本: pytest --version
==========================================
三、pytest编写测试样例的规则
(1)测试文件以 test_ 开头(以 test 结尾也可以)。
(2)测试类以 Test 开头,并且不能带有 init 方法
(3)测试函数以 test 开头
(4)断言使用基本的assert即可
==========================================