(self, *args, **kwargs)
| 12 | kernel = 'Truthy' |
| 13 | |
| 14 | def __init__(self, *args, **kwargs): |
| 15 | self.log_open = [] |
| 16 | self.log_send = [] |
| 17 | self.log_close = [] |
| 18 | super(MockComm, self).__init__(*args, **kwargs) |
| 19 | |
| 20 | def open(self, *args, **kwargs): |
| 21 | self.log_open.append((args, kwargs)) |
nothing calls this directly
no outgoing calls
no test coverage detected