(self)
| 861 | CopilotClient(connection=RuntimeConnection.for_uri("localhost:0")) |
| 862 | |
| 863 | def test_invalid_port_negative(self): |
| 864 | with pytest.raises(ValueError, match="Invalid port in cli_url"): |
| 865 | CopilotClient(connection=RuntimeConnection.for_uri("localhost:-1")) |
| 866 | |
| 867 | def test_is_external_server_true(self): |
| 868 | client = CopilotClient(connection=RuntimeConnection.for_uri("localhost:8080")) |
nothing calls this directly
no test coverage detected