MockTestConnection.php in Drupal 10
Same filename and directory in other branches
File
core/modules/system/tests/src/Functional/FileTransfer/MockTestConnection.phpView source
<?php
namespace Drupal\Tests\system\Functional\FileTransfer;
/**
* Mock connection object for test case.
*/
class MockTestConnection {
protected $commandsRun = [];
public $connectionString;
public function run($cmd) {
$this->commandsRun[] = $cmd;
}
public function flushCommands() {
$out = $this->commandsRun;
$this->commandsRun = [];
return $out;
}
}
Classes
Name | Description |
---|---|
MockTestConnection | Mock connection object for test case. |