gpt4 book ai didi

python - 无论如何在 TestCase 之外使用 TestCase.assertEqual() ?

转载 作者:太空宇宙 更新时间:2023-11-03 14:35:27 24 4
gpt4 key购买 nike

我有一个实用程序类,它存储对某些单元测试用例有用的方法。我希望这些辅助方法能够执行断言/失败/等等,但似乎我不能使用这些方法,因为它们期望 TestCase 作为它们的第一个参数...

我希望能够将常用方法存储在测试用例代码之外,并继续在其中使用断言,这可能吗?它们最终用于测试用例代码。

我有这样的东西:

unittest_foo.py:

import unittest
from common_methods import *
class TestPayments(unittest.TestCase):
def test_0(self):
common_method1("foo")

common_methods.py:

from unittest import TestCase
def common_method1():
blah=stuff
TestCase.failUnless(len(blah) > 5)
...
...

套件运行时:

TypeError:未绑定(bind)方法 failUnless() 必须以 TestCase 实例作为第一个参数调用(取而代之的是 bool 实例)

最佳答案

这通常是通过多重继承来实现的:

common_methods.py:

class CommonMethods:
def common_method1(self, stuff):
blah=stuff
self.failUnless(len(blah) > 5)
...
...

unittest_foo.py:

import unittest
from common_methods import CommonMethods
class TestPayments(unittest.TestCase, CommonMethods):
def test_0(self):
self.common_method1("foo")

关于python - 无论如何在 TestCase 之外使用 TestCase.assertEqual() ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1480144/

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