用法:
call_args_list
这是按顺序对模拟对象进行的所有调用的列表(因此列表的长度是它被调用的次数)。在进行任何调用之前,它是一个空列表。
call
对象可用于方便地构建调用列表以与call_args_list
进行比较。>>> mock = Mock(return_value=None) >>> mock() >>> mock(3, 4) >>> mock(key='fish', next='w00t!') >>> mock.call_args_list [call(), call(3, 4), call(key='fish', next='w00t!')] >>> expected = [(), ((3, 4),), ({'key': 'fish', 'next': 'w00t!'},)] >>> mock.call_args_list == expected True
call_args_list
的成员是call
对象。这些可以解包为元组以获取各个参数。将调用视为元组。
相关用法
- Python unittest.mock.Mock.call_args用法及代码示例
- Python unittest.mock.Mock.call_count用法及代码示例
- Python unittest.mock.Mock.called用法及代码示例
- Python unittest.mock.Mock.configure_mock用法及代码示例
- Python unittest.mock.Mock.reset_mock用法及代码示例
- Python unittest.mock.Mock.__class__用法及代码示例
- Python unittest.mock.Mock.method_calls用法及代码示例
- Python unittest.mock.Mock.assert_called用法及代码示例
- Python unittest.mock.Mock.assert_not_called用法及代码示例
- Python unittest.mock.Mock.mock_calls用法及代码示例
- Python unittest.mock.Mock.assert_has_calls用法及代码示例
- Python unittest.mock.Mock.side_effect用法及代码示例
- 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.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.call_args_list。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。