2021年11月18日

【pytest单元测试框架】(3)pytest 扩展

摘要: pytest 扩展 Pytest 可以扩展非常多的插件来实现各种功能,这里介绍几个对做 Web 自动化测试非常有用的插件。 1、pytest-html pytest-html 可以生成 HTML 格式的测试报告。首先,通过 pip 命令安装 pytest-html 扩展。 pip install p 阅读全文

posted @ 2021-11-18 18:09 hello_殷 阅读(133) 评论(0) 推荐(0) 编辑

【pytest单元测试框架】(2)pytest 的基本使用方法

摘要: pytest 的基本使用方法 1、断言 在 unittest 单元测试框架中提供了丰富的断言方法,如 assertEqual()、assertIn()、assertTrue()、assertIs()等。pytest 单元测试框架并没有提供专门的断言方法,而是直接使用Python 的 assert 进 阅读全文

posted @ 2021-11-18 17:18 hello_殷 阅读(475) 评论(0) 推荐(0) 编辑

【pytest单元测试框架】(1)pytest 简单例子

摘要: pytest 简单例子 pytest 官方网站:https://docs.pytest.org/en/latest/ pytest 支持 pip 安装 pip install pytest 通过 pytest 编写一个简单的测试用例,创建 test_sample.py 文件 # -*- coding 阅读全文

posted @ 2021-11-18 14:11 hello_殷 阅读(697) 评论(0) 推荐(0) 编辑

导航

作者:hello.殷
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文链接,否则保留追究法律责任的权利。