(self)
| 63 | client.close() |
| 64 | |
| 65 | def test_stop_twice(self): |
| 66 | sock, port = bind_unused_port() |
| 67 | server = TCPServer() |
| 68 | server.add_socket(sock) |
| 69 | server.stop() |
| 70 | server.stop() |
| 71 | |
| 72 | @gen_test |
| 73 | def test_stop_in_callback(self): |
nothing calls this directly
no test coverage detected