测试 Python 函数中的异常
问题:
如何确保 Python 函数引发预期的异常?
答案:
使用 unittest 模块中的 TestCase.assertRaises 方法。该方法有两个参数:异常类和函数调用。如果函数调用没有引发预期的异常,则测试失败。
这是一个示例:
<code class="python">import unittest import mymod class MyTestCase(unittest.TestCase): def test1(self): self.assertRaises(SomeCoolException, mymod.myfunc)</code>
在此示例中,test1 断言模块 mymod 中的函数 myfunc 引发异常SomeCoolException 类型。如果没有引发异常,测试将失败。
以上是如何测试 Python 函数中的预期异常?的详细内容。更多信息请关注PHP中文网其他相关文章!