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

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

Get the test library output
public getOutput ( ) : string
Результат string
    public function getOutput()
    {
        return $this->_output;
    }

Usage Example

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