Py.test: parametrize test cases from classes(Py.test:对类中的测试用例进行参数化)
问题描述
我目前正在关注这个 py.test 示例,当我不这样做时它会成功使用类,但是当我将测试用例引入类时我失败了.
I'm currently following this py.test example and it works out when I do not use classes, however when I introduce test cases into classes I am failing.
我设法写的最小的情况如下:
The smallest case I managed to write is the following:
import unittest
import pytest
class FixtureTestCase(unittest.TestCase):
@pytest.mark.parametrize("test_input,expected", [
("3+5", 8),
("2+4", 6),
("6*9", 42),
])
def test_1(self, a, b):
self.assertEqual(a, b)
不幸的是当我执行时
py.test test_suite.py
我收到错误消息:
TypeError: test_1() takes exactly 3 arguments (1 given)
如何才能生成一组 test_1 测试?
How can I do in order to generate a battery of test_1 tests?
推荐答案
如果你从 unittest.TestCase
继承,你的测试方法不能有额外的参数.如果您只是从 object
子类化,它会起作用(尽管您必须使用常规的 assert
语句而不是 TestCase.assertEqual
方法.
If you subclass from unittest.TestCase
, your test methods cannot have additional arguments. If you simply subclass from object
, it will work (though you'll have to use regular assert
statements instead of the TestCase.assertEqual
methods.
import unittest
import pytest
class TestCase(object):
@pytest.mark.parametrize("test_input,expected", [
("3+5", 8),
("2+4", 6),
("6*9", 42),
])
def test_1(self, a, b):
assert eval(a) == b
不过,在这一点上,它有点引出了一个问题,为什么您使用类而不是仅仅定义函数,因为测试本质上是相同的,但需要更少的整体样板和代码.
At that point though, it kind of begs the question why you're using classes instead of just defining functions, since the test will essentially be the same, but require less overall boilerplate and code.
这篇关于Py.test:对类中的测试用例进行参数化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Py.test:对类中的测试用例进行参数化


基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01