(self)
| 217 | |
| 218 | class MockConnection: |
| 219 | def __init__(self): |
| 220 | self.cancel_context = _CancellationContext() |
| 221 | self.more_to_come = False |
| 222 | self.id = random.randint(0, 100) |
| 223 | self.is_sdam = False |
| 224 | self.server_connection_id = random.randint(0, 100) |
| 225 | |
| 226 | def close_conn(self, reason): |
| 227 | pass |
nothing calls this directly
no test coverage detected