@since Method available since Release 3.6.0
string
public function hasOutput() {
if (strlen($this->output) === 0) {
return FALSE;
}
if ($this->outputExpectedString !== NULL || $this->outputExpectedRegex !== NULL || $this->hasPerformedExpectationsOnOutput) {
return FALSE;
}
return TRUE;
}