随笔分类 - pytest
pytest
摘要:目录 初识快速入门 函数方法 固件 内置固件 参考链接: https://learning-pytest.readthedocs.io/zh/latest/doc https://docs.python.org/zh-cn/3/reference/ 官方链接: https://docs.pytest
阅读全文
摘要:参考链接 https://docs.python.org/zh-cn/3/reference/simple_stmts.html?highlight=assert#grammar-token-assert_stmt 断言 assert 在 pytest 中,assert 是编写测试的最基础工具。如
阅读全文
摘要:参考文档 https://learning-pytest.readthedocs.io/zh/latest/ 环境安装 pip install pytest 检查安装 pytest --version 用例编写 用例默认识别规则 用例文件:所有文件名为test_开头 或者 _test 开头的文件会被
阅读全文