當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python unittest.mock.Mock.assert_not_called用法及代碼示例


用法:

assert_not_called()

斷言模擬從未被調用過。

>>> m = Mock()
>>> m.hello.assert_not_called()
>>> obj = m.hello()
>>> m.hello.assert_not_called()
Traceback (most recent call last):
  ...
AssertionError: Expected 'hello' to not have been called. Called 1 times.

3.5 版中的新函數。

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 unittest.mock.Mock.assert_not_called。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。