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());
 }