示例#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");
 }