(self, a)
| 1041 | def test_setting_call(self): |
| 1042 | mock = Mock() |
| 1043 | def __call__(self, a): |
| 1044 | self._increment_mock_call(a) |
| 1045 | return self._mock_call(a) |
| 1046 | |
| 1047 | type(mock).__call__ = __call__ |
| 1048 | mock('one') |
nothing calls this directly
no test coverage detected