(self)
| 857 | CopilotClient(connection=RuntimeConnection.for_uri("localhost:99999")) |
| 858 | |
| 859 | def test_invalid_port_zero(self): |
| 860 | with pytest.raises(ValueError, match="Invalid port in cli_url"): |
| 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"): |
nothing calls this directly
no test coverage detected