(self)
| 831 | assert client._is_external_server |
| 832 | |
| 833 | def test_parse_host_port_url(self): |
| 834 | client = CopilotClient(connection=RuntimeConnection.for_uri("127.0.0.1:9000")) |
| 835 | assert client._runtime_port == 9000 |
| 836 | assert client._actual_host == "127.0.0.1" |
| 837 | assert client._is_external_server |
| 838 | |
| 839 | def test_parse_http_url(self): |
| 840 | client = CopilotClient(connection=RuntimeConnection.for_uri("http://localhost:7000")) |
nothing calls this directly
no test coverage detected