Mutagenesis\Adapter\AdapterAbstract::getOutput PHP Méthode

getOutput() public méthode

Get the test library output
public getOutput ( ) : string
Résultat 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());
 }