Python 单元测试中遇到 AttributeError: \'TestEmployee\' object has no attribute \'employee\',怎么办?

python 单元测试中遇到 attributeerror: 'testemployee' object has no attribute 'employee',怎么办?

python中的attributeerror问题

在使用python时,遇到了attributeerror异常,提示消息是''testemployee' object has no attribute 'employee''。这是怎么回事?

问题分析

这个问题出现在单元测试代码中。在主代码中,实例化了一个名为 employee 的 employee 对象,并将它赋值给 self.employee 。但是,在测试方法 test_give_default_raise 中,出现了错误。

解决方案

要解决这个问题,需要检查 setup 方法是否写错了。在 python 单元测试中,setup 方法会在每个测试方法运行之前被调用,用来初始化测试环境。这里,把 setup 写成了 setup,导致 python 无法识别该方法。

修正后的 setup 方法写法如下:

def setUp(self):
    self.employee = Employee('taylor', 'swift', 20000)

修改后,setup 方法将正确实例化 employee 对象,并将其分配给 self.employee 。这将解决 attributeerror 异常,单元测试将能够正常运行。

以上就是Python 单元测试中遇到 AttributeError: 'TestEmployee' object has no attribute 'employee',怎么办?的详细内容,更多请关注其它相关文章!