clearOutput() public method

Clears the process output.
public clearOutput ( ) : Process
return Process
示例#1
0
 /**
  * @return Result
  */
 public function getResult()
 {
     if ($this->resultProcessed) {
         throw new RuntimeException('Result has already been processed.');
     }
     /**
      * Exit Code should be 0, 1, 2 or a larger integer.
      * The exit code 0 indicates no problem, should be an escaped mutant
      * detected by checkout the out.
      * Exit codes 1 and 2 indicate failures in the test framework, should
      * be caught mutants.
      * Other exit codes should arise on non-associated errors.
      */
     $status = Result::getStatusCode($this->adapter->ok($this->process->getOutput()), $this->process->getExitCode(), $this->isTimeout);
     $result = new Result($this->mutant, $status, $this->process->getOutput(), $this->process->getErrorOutput());
     $this->process->clearOutput();
     $this->resultProcessed = true;
     return $result;
 }
 public function testFlushOutput()
 {
     $p = new Process(sprintf('php -r %s', escapeshellarg('$n=0;while ($n<3) {echo \' foo \';$n++;}')));
     $p->run();
     $p->clearOutput();
     $this->assertEmpty($p->getOutput());
 }