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

pytest---参数化

时间:2019-09-22 01:34:37      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:one   led   inpu   actual   cli   expected   ted   fail   enc   

import pytest


@pytest.mark.parametrize(‘test_input,expected‘,[(‘3+5‘,8),
(‘2-1‘,1),(‘7*5‘,30)])
def test_eval(test_input,expected):
assert eval(test_input)==expected    ----eval把字符串转换成表达式


est_param.py::test_eval[2-1-1]
test_param.py::test_eval[7*5-30] PASSED [ 33%]PASSED [ 66%]FAILED [100%]
test_param.py:3 (test_eval[7*5-30])
35 != 30

Expected :30
Actual :35
<Click to see difference>

test_input = ‘7*5‘, expected = 30

@pytest.mark.parametrize(‘test_input,expected‘,[(‘3+5‘,8),
(‘2-1‘,1),(‘7*5‘,30)])
def test_eval(test_input,expected):
> assert eval(test_input)==expected
E assert 35 == 30          ----提示把30改成35

test_param.py:7: AssertionError

Assertion failed

pytest---参数化

标签:one   led   inpu   actual   cli   expected   ted   fail   enc   

原文地址:https://www.cnblogs.com/QaStudy/p/11565438.html

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