예제 #1
0
파일: ExecTest.php 프로젝트: griffbrad/gasp
 public function testCommandOutputIsIncludedInResult()
 {
     $result = $this->exec->setCmd("bash -c 'echo TEST_OUTPUT'")->run();
     $this->assertContains('TEST_OUTPUT', $result->getOutput());
 }