예제 #1
0
파일: ExifTest.php 프로젝트: Smony/njphoto
 /**
  * @group exif
  * @covers \PHPExif\Exif::getWidth
  */
 public function testGetWidth()
 {
     $expected = 500;
     $data[\PHPExif\Exif::WIDTH] = $expected;
     $this->exif->setData($data);
     $this->assertEquals($expected, $this->exif->getWidth());
 }