自动化测试神器:Python之Pytest库入门使用
import pytest
# 定义测试用例
def test_example():
assert True
# 定义另一个测试用例
def test_another_example():
assert 1 == 1
# 使用pytest运行测试用例
if __name__ == '__main__':
pytest.main(['-s', 'test_pytest.py'])
这段代码首先导入了pytest模块,然后定义了两个简单的测试用例。每个测试用例只是断言一个条件是否为真,以此来验证代码的正确性。最后,通过调用pytest.main()
函数并传入命令行参数来运行测试用例。这个例子展示了如何使用Pytest编写和运行简单的测试用例。
评论已关闭