(self)
| 1674 | self.assertFalse(server.close_expected()) |
| 1675 | |
| 1676 | def test_client_sends_close(self): |
| 1677 | client = Protocol(CLIENT) |
| 1678 | client.send_close() |
| 1679 | self.assertTrue(client.close_expected()) |
| 1680 | |
| 1681 | def test_server_sends_close(self): |
| 1682 | server = Protocol(SERVER) |
nothing calls this directly
no test coverage detected