用法
assertWarns(
expected_warning, *args, **kwargs
)
除非在使用指定的位置和关键字参数调用时,可调用对象触发类 warnClass 的警告,否则失败。如果触发了不同类型的警告,则不会对其进行处理:根据有效的其他警告过滤规则,它可能会被静音、打印出来或作为异常引发。
如果调用时省略了可调用对象和参数,将返回一个使用如下的上下文对象::
with self.assertWarns(SomeWarning):
do_something()
当 assertWarns 用作上下文对象时,可以提供可选的关键字参数 'msg'。
上下文管理器保留对第一个匹配警告的引用作为'warning' 属性;同样,'filename' 和 'lineno' 属性为您提供有关触发警告的 Python 代码行的信息。这允许您在断言之后检查警告::
with self.assertWarns(SomeWarning) as cm:
do_something()
the_warning = cm.warning
self.assertEqual(the_warning.some_attribute, 147)
相关用法
- Python tf.test.TestCase.assertLogs用法及代码示例
- Python tf.test.TestCase.assertItemsEqual用法及代码示例
- Python tf.test.TestCase.assertCountEqual用法及代码示例
- Python tf.test.TestCase.assertRaises用法及代码示例
- 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.assertWarns。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。