1.20.x filetransfer.test | TestFileTransfer::connect() |
Connects to the server.
Overrides FileTransfer::connect
File
- modules/
simpletest/ tests/ filetransfer.test, line 105
Class
- TestFileTransfer
- Mock FileTransfer object for test case.
Code
function connect() {
$parts = explode(':', $this->hostname);
$port = (count($parts) == 2) ? $parts[1] : $this->port;
$this->connection = new MockTestConnection();
$this->connection->connectionString = 'test://' . urlencode($this->username) . ':' . urlencode($this->password) . "@$this->host:$this->port/";
}