(cls)
| 353 | |
| 354 | @classmethod |
| 355 | def start_proxy_server(cls) -> None: |
| 356 | # Proxy server will handle the first TLS connection and create a |
| 357 | # connection to the destination server. |
| 358 | cls.proxy_server = SocketProxyDummyServer(cls.host, cls.port) |
| 359 | cls.proxy_server.start_proxy_handler() |
| 360 | |
| 361 | @classmethod |
| 362 | def teardown_class(cls) -> None: |
no test coverage detected