pytest测试框架使用
2020-06-08 本文已影响0人
阿尼奥赛哟
1. 测试用例的编写
测试函数必须以test_开头,assert用来断言 比如:
class TestClass:
def test_one(self):
x="hello"
assert "h" in x
2. 测试用例的执行
pytest xx.py
pytest-conftest:在所有用例执行之前如果要执行的统一操作(比如登录)
https://www.cnblogs.com/linuxchao/p/linuxchao-pytest-conftest.html