You are here

function MockTestConnection::flushCommands in SimpleTest 7

File

tests/filetransfer.test, line 163

Class

MockTestConnection
Mock connection object for test case.

Code

function flushCommands() {
  $out = $this->commandsRun;
  $this->commandsRun = array();
  return $out;
}