微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

pytest parametrize参数化

目录

pytest.mark.parametrize , 参数化测试函数

# 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

类参数化

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

模块参数化

  • pytestmark是全局环境变量,详情见
    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
    
    
    class TestClass2:
        def test_simple_case(self, n, expected):
            assert n + 1 == expected
    
        def test_weird_simple_case(self, n, expected):
            assert (n * 1) + 1 == expected
    

需要多个参数化组合,可以堆叠parametrize装饰器

import pytest


@pytest.mark.parametrize("x", [0, 1])
@pytest.mark.parametrize("y", [2, 3])
def test_foo(x, y):
    pass

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐