(self)
| 469 | return f"{self.get_protocol()}://127.0.0.1:{self.get_http_port()}{path}" |
| 470 | |
| 471 | def tearDown(self) -> None: |
| 472 | self.http_server.stop() |
| 473 | self.io_loop.run_sync( |
| 474 | self.http_server.close_all_connections, timeout=get_async_test_timeout() |
| 475 | ) |
| 476 | self.http_client.close() |
| 477 | del self.http_server |
| 478 | del self._app |
| 479 | super().tearDown() |
| 480 | |
| 481 | |
| 482 | class AsyncHTTPSTestCase(AsyncHTTPTestCase): |
nothing calls this directly
no test coverage detected