Exemplo n.º 1
0
 public function testRemoteImage()
 {
     $url = 'file://' . realpath(APPLICATION_PATH . '/../' . self::PICTURE_LANDSCAPE);
     $image = new LocalImage($url);
     $this->assertEquals(500, $image->getWidth());
     $this->assertEquals(333, $image->getHeight());
     $this->assertEquals($url, $image->getPath());
 }