(self, *args, **kwargs)
| 18 | super(MockComm, self).__init__(*args, **kwargs) |
| 19 | |
| 20 | def open(self, *args, **kwargs): |
| 21 | self.log_open.append((args, kwargs)) |
| 22 | |
| 23 | def send(self, *args, **kwargs): |
| 24 | self.log_send.append((args, kwargs)) |
nothing calls this directly
no outgoing calls
no test coverage detected