肖sir__pytest
作者:互联网
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即可
==========================================
标签:__,sir,测试,test,pytest,开头,pip,安装 来源: https://www.cnblogs.com/xiaolehong/p/16471150.html