本文介绍了你如何测试 Python 函数是否抛出异常?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何编写一个只有在函数没有抛出预期异常时才会失败的单元测试?
How does one write a unittest that fails only if a function doesn't throw an expected exception?
推荐答案
使用 TestCase.assertRaises
(或 TestCase.failUnlessRaises
)来自 unittest 模块,例如:
Use TestCase.assertRaises
(or TestCase.failUnlessRaises
) from the unittest module, for example:
import mymod
class MyTestCase(unittest.TestCase):
def test1(self):
self.assertRaises(SomeCoolException, mymod.myfunc)
这篇关于你如何测试 Python 函数是否抛出异常?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!