文件名称:在单元测试中测试异常情况-python cookbook(第3版)高清中文完整版
文件大小:4.84MB
文件格式:PDF
更新时间:2024-06-29 23:06:50
python cookbook 第3版 高清 中文完整版
14.3 在单元测试中测试异常情况 问题 You want to write a unit test that cleanly tests if an exception is raised. 解决方案 To test for exceptions, use the assertRaises() method. For example, if you want to test that a function raised a ValueError exception, use this code: