Mutagenesis\Adapter\AdapterAbstract::getOutput PHP Method

getOutput() public method

Get the test library output
public getOutput ( ) : string
return string
    public function getOutput()
    {
        return $this->_output;
    }

Usage Example

 public function testGetOutputAfterChange()
 {
     $expectedResult = sha1(microtime(true));
     $this->adapter->setOutput($expectedResult);
     $this->assertEquals($expectedResult, $this->adapter->getOutput());
 }