Mutagenesis\Adapter\AdapterAbstract::setOutput PHP Метод

setOutput() публичный Метод

Set the test library output so it can be used later
public setOutput ( string $output )
$output string
    public function setOutput($output)
    {
        $this->_output = $output;
    }

Usage Example

Пример #1
0
 public function testGetOutputAfterChange()
 {
     $expectedResult = sha1(microtime(true));
     $this->adapter->setOutput($expectedResult);
     $this->assertEquals($expectedResult, $this->adapter->getOutput());
 }