gpt4 book ai didi

python - Pycharm 以详细模式运行单元测试

转载 作者:太空狗 更新时间:2023-10-30 01:26:39 25 4
gpt4 key购买 nike

有没有办法在 pycharm 中以详细模式运行单元测试。我正在寻找一种在测试函数中查看文档字符串的方法,以便我可以看到运行测试的一些信息。

class KnownValues(unittest.TestCase):
known_values = (
([1, 2],[[1, 2]]),
([1, 2, 3], [[1, 2], [1, 2, 3]]),
([1, 2, 3, 4],[[1, 2], [1, 2, 3, 4]]),
([1, 2, 3, 4, 5],[[1, 2], [1, 2, 3], [1, 2, 3, 4, 5]]),
([1, 2, 3, 4, 5, 6],[[1, 2], [1, 2, 3], [1, 2, 3, 4], [1, 2, 3, 4, 5, 6]]),
)

def test_check(self):
'''This should check is the function returning right'''
for arg, result in self.known_values:
print("Testing arg:{}".format(arg))
assert program.lister(arg) == result


if __name__ == '__main__':
unittest.main()

它返回:

Testing started at 19:38 ч. ...
Testing arg:[1, 2]

Process finished with exit code 0

我想得到:

test_check (__main__.KnownValues)
This should check is the function returning right ... Testing arg:[1, 2]
ok

----------------------------------------------------------------------
Ran 1 test in 0.001s

OK

最佳答案

您所要做的就是使用 setUp 方法并像这样调用 _testMethodDoc 属性:

def setUp(self):
print(self._testMethodDoc)

你当然可以为你的单元测试创​​建你自己的基类,它继承自 unittest.TestCase) 但是如果你想稍后重写 setUp 方法,你将有调用 super。可以选择缩短代码实现:

class BaseUnitTest(unittest.TestCase):
def setUp(self):
print(self._testMethodDoc)


class KnownValues(BaseUnitTest):
...

关于python - Pycharm 以详细模式运行单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43561829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com