(self)
| 529 | return "%s://127.0.0.1:%s%s" % (self.get_protocol(), self.get_http_port(), path) |
| 530 | |
| 531 | def tearDown(self) -> None: |
| 532 | self.http_server.stop() |
| 533 | self.io_loop.run_sync( |
| 534 | self.http_server.close_all_connections, timeout=get_async_test_timeout() |
| 535 | ) |
| 536 | self.http_client.close() |
| 537 | del self.http_server |
| 538 | del self._app |
| 539 | super().tearDown() |
| 540 | |
| 541 | |
| 542 | class AsyncHTTPSTestCase(AsyncHTTPTestCase): |
nothing calls this directly
no test coverage detected