测试面试题:pytest断言时,数据是符点类型,如何断言?

在使用 Pytest 进行断言时,如果数据是浮点类型,可以使用以下方法进行断言:

一、使用pytest.approx

pytest.approx可以用来比较两个浮点数是否近似相等。例如:

python 复制代码
import pytest

def test_float_assertion():
    result = 3.14159
    expected = 3.14
    assert result == pytest.approx(expected, rel=1e-2)

在这个例子中,pytest.approx(expected, rel=1e-2)表示允许结果与期望值之间有相对误差不超过1e-2(即 0.01)。

二、使用math.isclose结合pytest.raises进行断言

可以结合 Python 的内置函数math.isclose来判断两个浮点数是否接近,并使用pytest.raises来处理断言失败的情况。例如:

python 复制代码
import math
import pytest

def test_float_assertion_alternate():
    result = 3.14159
    expected = 3.14
    with pytest.raises(AssertionError):
        assert not math.isclose(result, expected, rel_tol=1e-2)

这里如果结果与期望不接近,就会触发AssertionError,被pytest.raises捕获。

在进行浮点类型数据的断言时,要根据具体的精度要求和测试场景选择合适的断言方法。

相关推荐
ayyyy____7 小时前
pytest执行用例时从conftest.py抛出ModuleNotFoundError:No module named ‘XXX‘异常的解决办法
pytest
_可乐无糖9 小时前
pytest中的断言
python·pytest
幸运的星竹1 天前
使用pytest+openpyxl做接口自动化遇到的问题
python·自动化·pytest
_可乐无糖1 天前
mac终端使用pytest执行iOS UI自动化测试方法
macos·pytest
小码哥说测试3 天前
Selenium+Pytest自动化测试框架 ------ 禅道实战
自动化测试·软件测试·selenium·测试工具·单元测试·pytest·接口测试
m0_371356153 天前
【测试框架篇】单元测试框架pytest(2):用例编写
单元测试·pytest
m0_371356153 天前
【测试框架篇】单元测试框架pytest(3):用例执行参数详解
单元测试·pytest
linda_06074 天前
【Allure】mac下环境配置
pytest
七灵微4 天前
【测试】【Debug】vscode pytest 找不到测试用例测试文件 行号部位没有绿色箭头
pytest
防御塔策略6 天前
pytest简单使用
python·单元测试·pytest·hook·fixture·mark