会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
凌晨的集市人不多
首页
新随笔
管理
2021年8月26日
Pytest 编写规则
摘要: 编写规则: 测试文件以test_开头(以_test结尾也可以) 测试类以Test开头,并且不能带有 init 方法 测试用例方法以test_开头 断言使用基本的assert即可 示例 : test_pyexample.py import pytest class TestClass: def tes
阅读全文
posted @ 2021-08-26 12:46 Avicii_2018
阅读(74)
评论(0)
推荐(0)
编辑