()
| 223 | def assert_any_call(*args, **kwargs): |
| 224 | return mock.assert_any_call(*args, **kwargs) |
| 225 | def reset_mock(): |
| 226 | funcopy.method_calls = _CallList() |
| 227 | funcopy.mock_calls = _CallList() |
| 228 | mock.reset_mock() |
| 229 | ret = funcopy.return_value |
| 230 | if _is_instance_mock(ret) and not ret is mock: |
| 231 | ret.reset_mock() |
| 232 | |
| 233 | funcopy.called = False |
| 234 | funcopy.call_count = 0 |
nothing calls this directly
no test coverage detected