用法
assertRaises(
expected_exception, *args, **kwargs
)
除非在使用指定的位置和关键字参数调用时,可调用对象引发类 expected_exception 的异常,否则失败。如果引发了不同类型的异常,则不会被捕获,并且测试用例将被视为发生错误,就像意外异常一样。
如果调用时省略了可调用对象和参数,将返回一个使用如下的上下文对象::
with self.assertRaises(SomeException):
do_something()
当 assertRaises 用作上下文对象时,可以提供可选的关键字参数 'msg'。
上下文管理器保留对异常的引用作为'exception' 属性。这允许您在断言之后检查异常::
with self.assertRaises(SomeException) as cm:
do_something()
the_exception = cm.exception
self.assertEqual(the_exception.error_code, 3)
相关用法
- Python tf.test.TestCase.assertLogs用法及代码示例
- Python tf.test.TestCase.assertItemsEqual用法及代码示例
- Python tf.test.TestCase.assertWarns用法及代码示例
- Python tf.test.TestCase.assertCountEqual用法及代码示例
- Python tf.test.TestCase.create_tempfile用法及代码示例
- Python tf.test.TestCase.cached_session用法及代码示例
- Python tf.test.TestCase.captureWritesToStream用法及代码示例
- Python tf.test.TestCase.session用法及代码示例
- Python tf.test.TestCase.create_tempdir用法及代码示例
- Python tf.test.is_built_with_rocm用法及代码示例
- Python tf.test.is_gpu_available用法及代码示例
- Python tf.test.create_local_cluster用法及代码示例
- Python tf.test.is_built_with_cuda用法及代码示例
- Python tf.test.compute_gradient用法及代码示例
- Python tf.test.gpu_device_name用法及代码示例
- Python tf.test.is_built_with_gpu_support用法及代码示例
- Python tf.test.is_built_with_xla用法及代码示例
- Python tf.tensor_scatter_nd_max用法及代码示例
- Python tf.tensor_scatter_nd_sub用法及代码示例
- Python tf.tensor_scatter_nd_update用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.test.TestCase.assertRaises。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。