码迷,mamicode.com
首页 > 其他好文 > 详细

pytest-Mark数据驱动

时间:2019-04-30 10:43:06      阅读:435      评论:0      收藏:0      [点我收藏+]

标签:led   expect   数据   test   class   failed   mil   bsp   code   

数据驱动

import pytest

@pytest.mark.parametrize(("a", "b", "expected"), [
    [1, 2, 3],
    [10, 11, 21],
    [1, 1, 1],
])
def test_1(a, b, expected):
    assert a + b == expected

if __name__ == "__main__":
    pytest.main(["-v"])
==================================
test_pytest.py::test_1[1-2-3] PASSED        [ 33%]
test_pytest.py::test_1[10-11-21] PASSED     [ 66%]
test_pytest.py::test_1[1-1-1] FAILED        [100%]

 

pytest-Mark数据驱动

标签:led   expect   数据   test   class   failed   mil   bsp   code   

原文地址:https://www.cnblogs.com/cainiaoxiansheng/p/10794531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!