Пример #1
0
 public function test_that_is_output_disabled_returns_false_when_enabled()
 {
     $process = new Process('ls -la');
     $process->enableOutput();
     $this->assertFalse($process->isOutputDisabled());
 }