#python命名规范
Python风格规范 — Google 开源项目风格指南 (zh-google-styleguide.readthedocs.io)
pytest命名规则
pytest有哪些格式要求?
pytest 编写pytest测试用例函数时测试规则
-
包 :pytest对包无命名要求
-
文件名:以test_开头或者以_test结尾
-
类:以Test开头
-
方法/函数:以test_开头
注意:测试类函数中不能添加__init__构造函数
#python命名规范
Python风格规范 — Google 开源项目风格指南 (zh-google-styleguide.readthedocs.io)
包 :pytest对包无命名要求
文件名:以test_开头或者以_test结尾
类:以Test开头
方法/函数:以test_开头
注意:测试类函数中不能添加__init__构造函数