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
测试函数必须以test_开头,assert用来断言 比如:
class TestClass:
def test_one(self):
x="hello"
assert "h" in x
pytest xx.py
pytest-conftest:在所有用例执行之前如果要执行的统一操作(比如登录)
https://www.cnblogs.com/linuxchao/p/linuxchao-pytest-conftest.html
本文标题:pytest测试框架使用
本文链接:https://www.haomeiwen.com/subject/cdgrtktx.html
网友评论