getOutput() public method

Get the test library output
public getOutput ( ) : string
return string
 public function testGetOutputAfterChange()
 {
     $expectedResult = sha1(microtime(true));
     $this->adapter->setOutput($expectedResult);
     $this->assertEquals($expectedResult, $this->adapter->getOutput());
 }