(self)
| 1679 | self.assertTrue(client.close_expected()) |
| 1680 | |
| 1681 | def test_server_sends_close(self): |
| 1682 | server = Protocol(SERVER) |
| 1683 | server.send_close() |
| 1684 | self.assertTrue(server.close_expected()) |
| 1685 | |
| 1686 | def test_client_receives_close(self): |
| 1687 | client = Protocol(CLIENT) |
nothing calls this directly
no test coverage detected