예제 #1
0
파일: LintTest.php 프로젝트: griffbrad/gasp
 public function setUp()
 {
     $gasp = new Run();
     $this->lint = new Lint();
     $this->lint->setGasp($gasp);
 }
예제 #2
0
 public function testCanSetGaspInstanceOnTask()
 {
     $gasp = new Run();
     $task = new Lint();
     $task->setGasp($gasp);
 }