用法:
assert_has_calls(calls, any_order=False)
断言已使用指定的调用调用了模拟。检查
mock_calls
列表中的调用。如果
any_order
为假,则调用必须是连续的。在指定的调用之前或之后可以有额外的调用。如果
any_order
为真,则调用可以按任何顺序进行,但它们必须全部出现在mock_calls
中。>>> mock = Mock(return_value=None) >>> mock(1) >>> mock(2) >>> mock(3) >>> mock(4) >>> calls = [call(2), call(3)] >>> mock.assert_has_calls(calls) >>> calls = [call(4), call(2), call(3)] >>> mock.assert_has_calls(calls, any_order=True)
相关用法
- Python unittest.mock.Mock.assert_called用法及代码示例
- Python unittest.mock.Mock.assert_not_called用法及代码示例
- Python unittest.mock.Mock.assert_called_once_with用法及代码示例
- Python unittest.mock.Mock.assert_called_once用法及代码示例
- Python unittest.mock.Mock.assert_any_call用法及代码示例
- Python unittest.mock.Mock.assert_called_with用法及代码示例
- Python unittest.mock.Mock.reset_mock用法及代码示例
- Python unittest.mock.Mock.__class__用法及代码示例
- Python unittest.mock.Mock.call_args用法及代码示例
- Python unittest.mock.Mock.method_calls用法及代码示例
- Python unittest.mock.Mock.call_args_list用法及代码示例
- Python unittest.mock.Mock.mock_calls用法及代码示例
- Python unittest.mock.Mock.configure_mock用法及代码示例
- Python unittest.mock.Mock.called用法及代码示例
- Python unittest.mock.Mock.side_effect用法及代码示例
- Python unittest.mock.Mock.call_count用法及代码示例
- Python unittest.mock.Mock.return_value用法及代码示例
- Python unittest.mock.AsyncMock.assert_awaited_once_with用法及代码示例
- Python unittest.mock.call用法及代码示例
- Python unittest.mock.AsyncMock.assert_any_await用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 unittest.mock.Mock.assert_has_calls。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。