用法:
__class__
通常,对象的
__class__
属性将返回其类型。对于带有spec
的模拟对象,__class__
会返回规范类。这允许模拟对象通过isinstance()
测试它们正在替换/伪装的对象:>>> mock = Mock(spec=3) >>> isinstance(mock, int) True
__class__
可分配给,这允许模拟通过isinstance()
检查,而不会强制您使用规范:>>> mock = Mock() >>> mock.__class__ = dict >>> isinstance(mock, dict) True
相关用法
- Python unittest.mock.Mock.reset_mock用法及代码示例
- Python unittest.mock.Mock.call_args用法及代码示例
- Python unittest.mock.Mock.method_calls用法及代码示例
- Python unittest.mock.Mock.call_args_list用法及代码示例
- 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.configure_mock用法及代码示例
- Python unittest.mock.Mock.called用法及代码示例
- 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.call_count用法及代码示例
- 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.__class__。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。