用法
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。