(client)
| 112 | |
| 113 | def test_connections(self): |
| 114 | def test_url(client): |
| 115 | try: |
| 116 | # Check if server provides the system.listMethods function. |
| 117 | client.server.system.listMethods() |
| 118 | return True |
| 119 | except Exception as e: |
| 120 | print(f"Failed to connect to {client.url}. Error: {str(e)}") |
| 121 | return False |
| 122 | |
| 123 | start_time = time.perf_counter() |
| 124 | futures = [ |
nothing calls this directly
no outgoing calls
no test coverage detected