本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

Python中的unittest框架测试时遇到AttributeError异常怎么办?

网络教程 app 1℃

Python中的unittest框架测试时遇到AttributeError异常怎么办

python 中的 attributeerror 问题

在 python 中使用 unittest 框架进行测试时,有时可能会遇到 attributeerror 异常。此异常通常是由于测试方法中引用了未定义的属性造成的。

问题描述

例如,在下面的代码中,test_give_default_raise 方法中引用的 employee 属性未在 setup 方法中定义,因此会出现 attributeerror 异常:

class testemployee(unittest.testcase): def setup(self): self.employee = employee(‘taylor’, ‘swift’, 20000) def test_give_default_raise(self): self.employee.give_raise() self.assertequal(self.self.pay, 25000)

解决方法

要解决此问题,需要确保在 setup 方法中正确定义了 employee 属性。具体来说,应将 setup 方法更正为:

class TestEmployee(unittest.TestCase): def setUp(self): self.employee = Employee(‘taylor’, ‘swift’, 20000) def test_give_default_raise(self): self.employee.give_raise() self.assertEqual(self.employee.pay, 25000)

以上就是Python 中的 unittest 框架测试时遇到 AttributeError 异常怎么办?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » Python中的unittest框架测试时遇到AttributeError异常怎么办?

喜欢 (0)