예제 #1
0
파일: ExifTest.php 프로젝트: Smony/njphoto
 /**
  * @group exif
  * @covers \PHPExif\Exif::getJobtitle
  */
 public function testGetJobtitle()
 {
     $expected = 'Yellowstone\'s geysers and pools';
     $data[\PHPExif\Exif::JOB_TITLE] = $expected;
     $this->exif->setData($data);
     $this->assertEquals($expected, $this->exif->getJobtitle());
 }