当前位置: 首页 > article >正文

20、pytest中的参数化

官方实例

# content of test_expectation.py

import pytest

@pytest.mark.parametrize("test_input, expected",[("3+5",8),("2+4",6),("6*9",42)])
def test_eval(test_input, expected):
    assert eval(test_input) == expected
# content of test_expectation_class
import pytest

@pytest.mark.parametrize("n, expected",[(1,2),(3,4)])
class TestClass:
    def test_simple_case(self, n, expected):
        assert n + 1 == expected
        
    def test_weird_simple_case(self, n, expected):
        assert (n * 1) + 1 == expected
# content of test_parametrize_glob.py
import pytest

pytestmark = pytest.mark.parametrize("n,expected",[(1,2),(3,4)])

class TestClass:
    def test_simple_case(self, n, expected):
        assert n + 1 == expected

    def test_weird_simple_case(self, n, expected):
        assert (n * 1) + 1 == expected

解读与实操

内置的pytest.mark.parametrize装饰器允许对测试函数的参数进行参数化。

注意:参数值按原样传递给测试(没有任何副本),例如,如果你传递一个列表或字典作为参数值,并且测试用例代码对它进行了修改,那么这些修改将在随后的测试用例调用中反映出来。

在这里插入图片描述

请注意,你也可以在类或模块上使用参数化标记,类中的函数将调用带有参数集内容。

在这里插入图片描述

要将模块中的所有测试参数化,可以将其赋值给pytestmark全局变量。

在这里插入图片描述

场景应用

测试函数相同,只是传入参数不同,就可以用这种方法扩展测试用例。特别是针对列表的搜索功能,同一个搜索函数,但是存在多个搜索项。


http://www.kler.cn/a/159606.html

相关文章:

  • 企业如何提高招聘能力?
  • FPGA学习(10)-数码管
  • 城市轨道交通数据可视化的应用与优势
  • 【数学二】线性代数-线性方程组-齐次线性方程组、非齐次线性方程组
  • 微服务各组件整合
  • WEB攻防-通用漏洞SQL注入sqlmapOracleMongodbDB2等
  • 213. 打家劫舍 II --力扣 --JAVA
  • 华为云obs在java中的使用
  • 应用层自定义协议
  • Jmeter测试移动接口性能 —— 压测
  • MySQL性能调优-2-实际优化案例
  • Redis高效缓存:加速应用性能的利器
  • 反序列化漏洞详解(二)
  • 【MySQL环境配置在虚拟机中】
  • 力扣面试经典150题——Unix简化路径
  • SQL通配符字符
  • 有什么样的管理模式可以改善团队关系
  • [Realtek sdk-3.4.14b] RTL8197FH-VG+RTL8812FR WiFi黑名单及剔除已连接终端功能实现
  • 02、pytest环境准备
  • MUC\GD32低功耗模式简介
  • CSP-矩阵运算
  • Elasticsearch:什么是向量嵌入?
  • 【Scopus检索】第六届生物技术与生物医学国际学术会议(ICBB 2024)
  • 使用docker搭建『Gitea』私有仓库
  • Objaverse:大规模3D模型开放数据集
  • git基础