Exemplo n.º 1
0
 public function testHasGetWidth()
 {
     $image = new LocalImage(self::PICTURE_LANDSCAPE);
     $this->assertFalse($image->hasWidth());
     $image->getWidth();
     $this->assertTrue($image->hasWidth());
 }