예제 #1
0
파일: FileTest.php 프로젝트: clarkf/hitch
 public function teardown()
 {
     if (is_file($this->path)) {
         unlink($this->path);
     }
     parent::teardown();
 }
예제 #2
0
파일: GDTest.php 프로젝트: clarkf/hitch
 public function setup()
 {
     parent::setup();
     $this->image = new GDImage(__DIR__ . "/fixtures/image.png");
 }