(self)
| 419 | return Application([("/echo", EchoHandler)]) |
| 420 | |
| 421 | def setUp(self): |
| 422 | super().setUp() |
| 423 | self.stream = IOStream(socket.socket()) |
| 424 | self.io_loop.run_sync( |
| 425 | lambda: self.stream.connect(("127.0.0.1", self.get_http_port())) |
| 426 | ) |
| 427 | |
| 428 | def tearDown(self): |
| 429 | self.stream.close() |
nothing calls this directly
no test coverage detected