Pytest测试的命名规则是怎样的,测试实现方法是什么
Admin 2022-07-08 群英技术资讯 530 次浏览
pytest以特定规则搜索测试用例,所以测试用例文件、测试类以及类中的方法、测试函数这些命名都必须符合规则,才能被pytest搜索到并加入测试运行队列中。
tips: 测试类的不应该有构造函数。
笔者习惯装测试用例的文件夹,测试用例文件,测试函数,类中的测试方法都以test_开头。建议保持一种统一的风格。
示例:
# func.py def add(a,b): return a+b # ./test_case/test_func.py import pytest from func import * class TestFunc: #def __init__(self): #self.a = 1 def test_add_by_class(self): assert add(2,3) == 5 def test_add_by_func(): assert add(4,6) == 10 ''' # stdout: ============================= test session starts ============================= platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 rootdir: D:\Python3.7\project\pytest plugins: allure-pytest-2.8.9, rerunfailures-8.0 collected 2 items test_case\test_func.py .. [100%] ============================== 2 passed in 0.04s ============================== [Finished in 1.3s] ###################################################################### '''
测试结果中,test_case\test_func.py … 。两个点号代表两个测试用例。
# func.py def add(a,b): return a+b # ./test_case/test_func.py import pytest from func import * class TestFunc: def __init__(self): self.a = 1 def test_add_by_class(self): assert add(2,3) == 5 def test_add_by_func(): assert add(4,6) == 10 ''' # stdout: ============================= test session starts ============================= platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 rootdir: D:\Python3.7\project\pytest plugins: allure-pytest-2.8.9, rerunfailures-8.0 collected 1 item test_case\test_func.py . [100%] ============================== warnings summary =============================== test_case\test_func.py:4 D:\Python3.7\project\pytest\test_case\test_func.py:4: PytestCollectionWarning: cannot collect test class 'TestFunc' because it has a __init__ constructor (from: test_case/test_func.py) class TestFunc: -- Docs: https://docs.pytest.org/en/latest/warnings.html ======================== 1 passed, 1 warning in 0.04s ========================= [Finished in 1.4s] ###################################################################### '''
会报错,pytest只能找到test_开头的函数,但是不能找到Test开头的含有构造函数的测试类。
如果因为某种需要,需要使用其他命名规则命名的测试文件、测试函数、测试类以及测试类的方法,可以通过pytest.ini配置文件做到。
在测试系统的顶层目录创建pytest.ini文件,在pytest.ini文件中写入如下配置:
[pytest] # 更改测试文件命名规则 python_files = HG* # 更改测试类命名规则 python_classes = HG* # 更嗨测试函数命名规则 python_functions = HG*
示例:
# func.py def add(a,b): return a+b # ./test_case/HG_func.py import pytest from func import * class HGFunc: #def __init__(self): #self.a = 1 def HG_add_by_class(self): assert add(2,3) == 5 def HG_add_by_func(): assert add(4,6) == 10 ''' stdout: ============================= test session starts ============================= platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 -- D:\Python3.7\python.exe cachedir: .pytest_cache rootdir: D:\Python3.7\project\pytest, inifile: pytest.ini plugins: allure-pytest-2.8.9, rerunfailures-8.0 collecting ... collected 2 items test_case/HG_func.py::HGFunc::HG_add_by_class PASSED [ 50%] test_case/HG_func.py::HG_add_by_func PASSED [100%] ============================== 2 passed in 0.03s ============================== [Finished in 1.3s] '''
Tips:
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了python编写小程序探测linux端口占用情况,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
大家好,本篇文章主要讲的是Pandas按周/月/年统计数据介绍,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下,方便下次浏览
链表的定义:链表(linkedlist)是由一组被称为结点的数据元素组成的数据结构,每个结点都包含结点本身的信息和指向下一个结点的地址。由于每个结点都包含了可以链接起来的地址信息,所以用一个变量就能够访问整个结点序列。也就是说,结点包含两部分信息:一部分用于存储数据元素的值,称为信息域;另一部分用于存储下一个数据元素地址的指针,称为指针域。链表中的第一个结点的地址存储在一个单独的结点中,称
本文和你一起来探索Python中的filter函数,让你以最短的时间明白这个函数的原理。也可以利用碎片化的时间巩固这个函数,让你在处理工作过程中更高效
这篇文章主要为大家介绍了Python上下文管理器,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助<BR>
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008