示例#1
0
 /**
  * @group exif
  * @covers \PHPExif\Exif::getCopyright
  */
 public function testGetCopyright()
 {
     $expected = 'Miljar';
     $data[\PHPExif\Exif::COPYRIGHT] = $expected;
     $this->exif->setData($data);
     $this->assertEquals($expected, $this->exif->getCopyright());
 }