pytest基本操作
安装:pip install pytest
#!/usr/bin/env python # -*- coding:utf-8 -*- # @Time:2022/7/30 14:50 # @Author:Lhtester # @Filename:pytest_01_基本操作.py def add(x,y):#功能 return x+y class Test_Add(object):#pytest 要以Test开头 '''测试用例''' def test_01(self):#测试用例方法,必须以test开头 print(add(1,2)) def test_02(self): print(add('a', 'b')) def test_03(self): print(add(20, 2)) if __name__ == "__main__": Test_Add()
pycharm设置然后直接在pycharm执行
main函数: