(self)
| 401 | self.assertFalse(self.protocol.open) |
| 402 | |
| 403 | def test_closed(self): |
| 404 | self.assertFalse(self.protocol.closed) |
| 405 | self.close_connection() |
| 406 | self.assertTrue(self.protocol.closed) |
| 407 | |
| 408 | def test_wait_closed(self): |
| 409 | wait_closed = self.loop.create_task(self.protocol.wait_closed()) |
nothing calls this directly
no test coverage detected