(self)
| 467 | return Application([("/echo", EchoHandler)]) |
| 468 | |
| 469 | def setUp(self): |
| 470 | super().setUp() |
| 471 | self.stream = IOStream(socket.socket()) |
| 472 | self.io_loop.run_sync( |
| 473 | lambda: self.stream.connect(("127.0.0.1", self.get_http_port())) |
| 474 | ) |
| 475 | |
| 476 | def tearDown(self): |
| 477 | self.stream.close() |
nothing calls this directly
no test coverage detected