(self)
| 87 | |
| 88 | class AsyncHTTPTestCaseTest(AsyncHTTPTestCase): |
| 89 | def setUp(self): |
| 90 | super().setUp() |
| 91 | # Bind a second port. |
| 92 | sock, port = bind_unused_port() |
| 93 | app = Application() |
| 94 | server = HTTPServer(app, **self.get_httpserver_options()) |
| 95 | server.add_socket(sock) |
| 96 | self.second_port = port |
| 97 | self.second_server = server |
| 98 | |
| 99 | def get_app(self): |
| 100 | return Application() |
nothing calls this directly
no test coverage detected