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