(self, expected)
| 226 | 2: asyncio.Event()} |
| 227 | |
| 228 | def _assert_state(self, expected): |
| 229 | if self.state != expected: |
| 230 | raise AssertionError(f'state: {self.state!r}, expected: {expected!r}') |
| 231 | |
| 232 | def connection_made(self, transport): |
| 233 | self.transport = transport |
no outgoing calls
no test coverage detected