Connect establishes a connection to the server.
()
| 11 | type TestClient interface { |
| 12 | // Connect establishes a connection to the server. |
| 13 | Connect() (TestClientConnection, error) |
| 14 | // MustConnect is identical to Connect, but panics it if it cannot connect. |
| 15 | MustConnect() TestClientConnection |
| 16 | } |
no outgoing calls