如何解决为什么这段代码会引发AssertionError?
这是代码。
# mean_var_std.py
def calculate(list):
try:
if len(list) < 9:
raise ValueError
else:
return 0
except ValueError:
print("List must contain nine numbers.")
这是测试。
import unittest
import mean_var_std
# the test case
class UnitTests(unittest.TestCase):
def test_calculate_with_few_digits(self):
self.assertRaisesRegex(ValueError,"List must contain nine numbers.",mean_var_std.calculate,[2,6,2,8,4,1,])
if __name__ == "__main__":
unittest.main()
运行它时,得到以下输出:
F
======================================================================
FAIL: test_calculate_with_few_digits (test_module.UnitTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/runner/fcc-mean-var-std-2/test_module.py",line 8,in test_calculate_with_few_digits
self.assertRaisesRegex(ValueError,])
AssertionError: ValueError not raised by calculate
----------------------------------------------------------------------
Ran 1 test in 0.001s
Failed (failures=1)
输出表明代码没有引发ValueError,但是从代码中我们可以清楚地看到代码引发了ValueError。为什么我的代码仍然无法通过单元测试?
解决方法
这是因为您在测试可以接收到ValueError之前就将其捕获。 删除try catch,它应该可以工作
# mean_var_std.py
def calculate(list):
if len(list) < 9:
print("List must contain nine numbers.")
raise ValueError
else:
return 0
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。