0

我正在尝试在 python 3.3.2 中运行一个 TestCase,其中包含多种测试方法:

class ttt(unittest.TestCase):
    def setUp(self):
        ...

    def tearDown(self):
        ...

    def test_test1(self):
        ...      

    def test_test2(self):
        ...



if __name__ == "__main__":
    instance = ttt()
    instance.run()

该文档指出以下内容:

TestCase 的每个实例都将运行一个基本方法:名为 methodName 的方法。但是,默认方法名的标准实现 runTest() 将以 test 开头的每个方法作为单独的测试运行,并相应地计算成功和失败。因此,在TestCase 的大多数使用中,您既不会更改methodName,也不会重新实现默认的runTest() 方法。

但是,当我运行代码时,我得到以下信息:

'ttt' object has no attribute 'runTest'

我想问:这是一个错误吗?如果不是,为什么没有 runTest 方法?难道我做错了什么?

4

1 回答 1

3

当单元测试框架运行测试用例时,它会为每个测试创建一个测试类的实例。

即模拟单元测试框架需要做什么:

if __name__ == "__main__":
    for testname in ["test_test1", "test_test2"]:
        instance = ttt(testname)
        instance.run()

在模块中运行单元测试的正确方法是:

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

...但我想你已经知道了。

关于runTestunittest.TestCase.__init__签名和文档字符串是:

def __init__(self, methodName='runTest'):
    """Create an instance of the class that will use the named test
       method when executed. Raises a ValueError if the instance does
       not have a method with the specified name.
    """

这意味着如果您没有在构造函数中指定测试名称,则默认为runTest.

于 2013-10-16T11:17:17.267 回答