測試Python 函數是否拋出異常
Python 中的單元測試通常涉及驗證函數在各種條件下的行為,包括提高預期值例外情況。要測試函數是否引發特定異常,可以利用單元測試模組提供的assertRaises方法。此方法允許開發者斷言將引發異常,如果未引發異常則測試失敗。
assertRaises 的語法如下:
<code class="python">assertRaises(exception_class, function, *args, **kwargs)</code>
其中:
例如,要測試函數myfunc 在呼叫時是否引發SomeCoolException,可以寫如下單元測試:
<code class="python">import mymod import unittest class MyTestCase(unittest.TestCase): def test1(self): self.assertRaises(SomeCoolException, mymod.myfunc)</code>
在此測試中,使用了assertRaises斷言myfunc 在不帶任何參數的情況下調用時將引發SomeCoolException。如果 myfunc 沒有引發預期的異常,測試將會失敗。
以上是如何測試Python函數是否拋出特定異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!