(self)
| 396 | self.protocol.transport = _transport |
| 397 | |
| 398 | def test_open(self): |
| 399 | self.assertTrue(self.protocol.open) |
| 400 | self.close_connection() |
| 401 | self.assertFalse(self.protocol.open) |
| 402 | |
| 403 | def test_closed(self): |
| 404 | self.assertFalse(self.protocol.closed) |
nothing calls this directly
no test coverage detected