Exemplo n.º 1
0
 public function testClear()
 {
     $this->image->setLocal($this->file);
     $this->image->setRemote('http://example.com/foo');
     $this->image->clear();
     $this->assertEmpty($this->image->getLocal());
     $this->assertEmpty($this->image->getRemote());
 }